forked from kelektiv/node-cron
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cron",
"description": "Cron jobs for your node",
"version": "1.7.2",
"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",
"types": "lib/cron.d.ts",
"scripts": {
"test": "jest"
},
"dependencies": {
"moment-timezone": "^0.5.x"
},
"devDependencies": {
"chai": "~4.2.x",
"eslint": "~6.3.x",
"eslint-config-prettier": "~6.2.x",
"eslint-config-standard": "~14.1.x",
"eslint-plugin-import": "~2.18.x",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "~10.0.x",
"eslint-plugin-prettier": "~3.1.x",
"eslint-plugin-promise": "~4.2.x",
"eslint-plugin-standard": "~4.0.x",
"jest": "^24.9.0",
"prettier": "~1.18.x",
"sinon": "~7.4.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)",
"Christopher Lunt <[email protected]> (https://github.com/kirisu)"
]
}