-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "dlay-core",
"version": "2.0.2",
"description": "A modern framework for all your scheduled tasks",
"main": "index.js",
"scripts": {
"test": "mocha spec/*.spec.js",
"cov": "c8 report -r lcov && cat ./coverage/lcov.info | coveralls",
"build": "c8 npm test && npm run cov"
},
"engines": {
"node": ">=10.13.0"
},
"repository": {
"type": "git",
"url": "[email protected]:dlay-io/dlay-core.git"
},
"keywords": [
"shedule",
"scheduling",
"cron",
"tasks",
"worker"
],
"author": "Gabriel de Oliveira Barbosa (Manobi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dlay-io/dlay/issues"
},
"homepage": "https://github.com/dlay-io/dlay#readme",
"devDependencies": {
"c8": "^3.2.1",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.12.0",
"eslint-plugin-mocha": "^5.2.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"node-fetch": "^2.3.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0"
},
"dependencies": {
"luxon": "^1.10.0",
"nano": "^7.1.1",
"queue": "^5.0.0"
}
}