forked from agenda/agenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.36 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "agenda",
"version": "3.1.0",
"description": "Light weight job scheduler for Node.js",
"main": "index.js",
"files": [
"lib"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "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",
"docs": "jsdoc --configure .jsdoc.json --verbose"
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
},
"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-parser": "^2.18.0",
"date.js": "~0.3.3",
"debug": "~4.3.0",
"human-interval": "~2.0.0",
"moment-timezone": "~0.5.27",
"mongodb": "~3.6.2"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/human-interval": "1.0.0",
"@types/mongodb": "3.5.27",
"blanket": "1.2.3",
"coveralls": "3.1.0",
"delay": "4.4.0",
"eslint": "7.15.0",
"eslint-config-xo": "0.33.1",
"eslint-plugin-ava": "11.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "23.0.0",
"expect.js": "0.3.1",
"jsdoc": "3.6.6",
"jsdoc-template": "https://github.com/braintree/jsdoc-template",
"mocha": "8.2.1",
"mocha-lcov-reporter": "1.3.0",
"q": "1.5.1",
"sinon": "9.2.1",
"typescript": "4.0.3",
"xo": "0.35.0"
},
"xo": {
"space": 2,
"ignores": [
"docs/**"
],
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"max-params": [
"error",
5
],
"max-nested-callbacks": [
"error",
5
]
},
"envs": [
"node"
]
}
}