forked from kelektiv/node-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.97 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
{
"name": "cron",
"description": "Cron jobs for your node",
"version": "1.4.0",
"author": "Nick Campbell <[email protected]> (http://github.com/ncb000gt)",
"bugs": {
"url": "http://github.com/kelektiv/node-cron/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/kelektiv/node-cron.git"
},
"main": "lib/cron",
"scripts": {
"test": "make test"
},
"dependencies": {
"moment-timezone": "^0.5.x"
},
"devDependencies": {
"mocha": "~5.1.x",
"chai": "~4.1.x",
"sinon": "~1.12.x",
"eslint": "~5.3.x",
"eslint-config-prettier": "~3.0.x",
"eslint-config-standard": "~11.0.x",
"eslint-plugin-import": "~2.14.x",
"eslint-plugin-node": "~7.0.x",
"eslint-plugin-prettier": "~2.6.x",
"eslint-plugin-promise": "~3.8.x",
"eslint-plugin-standard": "~3.1.x",
"prettier": "~1.14.x"
},
"keywords": [
"cron",
"node cron",
"node-cron",
"schedule",
"scheduler",
"cronjob",
"cron job"
],
"license": "MIT",
"contributors": [
"Romain Beauxis <[email protected]> (https://github.com/toots)",
"James Padolsey <> (https://github.com/jamespadolsey)",
"Finn Herpich <[email protected]> (https://github.com/ErrorProne)",
"Clifton Cunningham <[email protected]> (https://github.com/cliftonc)",
"Eric Abouaf <[email protected]> (https://github.com/neyric)",
"humanchimp <[email protected]> (https://github.com/humanchimp)",
"Craig Condon <[email protected]> (https://github.com/spiceapps)",
"Dan Bear <[email protected]> (https://github.com/danhbear)",
"Vadim Baryshev <[email protected]> (https://github.com/baryshev)",
"Leandro Ferrari <[email protected]> (https://github.com/lfthomaz)",
"Gregg Zigler <[email protected]> (https://github.com/greggzigler)",
"Jordan Abderrachid <[email protected]> (https://github.com/jordanabderrachid)",
"Masakazu Matsushita <[email protected]> (matsukaz)"
]
}