forked from agenda/agenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.87 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "agenda",
"version": "1.0.3",
"description": "Light weight job scheduler for Node.js",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "xo --verbose",
"mocha": "mocha --reporter spec --timeout 8000 -b",
"mocha-debug": "DEBUG=agenda:**,-agenda:internal:** mocha --reporter spec --timeout 8000 -b",
"mocha-debug-internal": "DEBUG=agenda:internal:** mocha --reporter spec --timeout 8000 -b",
"mocha-debug-all": "DEBUG=agenda:** mocha --reporter spec --timeout 8000 -b",
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
},
"docs": "jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git://github.com/agenda/agenda"
},
"keywords": [
"job",
"jobs",
"cron",
"delayed",
"scheduler",
"runner"
],
"author": "Ryan Schmukler <[email protected]> (http://slingingcode.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/agenda/agenda/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.1",
"delay": "2.0.0",
"eslint": "4.9.0",
"expect.js": "0.3.1",
"jsdoc": "3.5.5",
"jsdoc-template": "https://github.com/braintree/jsdoc-template",
"mocha": "4.1.0",
"mocha-lcov-reporter": "1.3.0",
"q": "1.5.0",
"sinon": "4.5.0",
"xo": "0.18.2"
},
"xo": {
"space": 2,
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"max-params": [
"error",
5
],
"max-nested-callbacks": [
"error",
5
]
},
"envs": [
"node"
]
}
}