-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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": "timecloud-core",
"version": "2.0.0",
"description": "A distributed scheduling system based on Node.js (core)",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"test": "nyc --reporter=html --reporter=text --reporter=json --report-dir .cov mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/iblueio/timecloud-core"
},
"keywords": [
"job",
"jobs",
"cron",
"delayed",
"scheduler",
"runner"
],
"author": "Bingmang <[email protected]> (http://iblue.tech/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iblueio/timecloud-core/issues"
},
"dependencies": {
"cron": "~1.3.0",
"date.js": "~0.3.2",
"debug": "~3.1.0",
"human-interval": "~0.1.3",
"moment-timezone": "~0.5.0",
"mongodb": "~2.2.33"
},
"devDependencies": {
"blanket": "^1.2.3",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"expect.js": "^0.3.1",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.6.0",
"q": "^1.5.0",
"xo": "^0.18.2"
}
}