forked from kelektiv/node-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.25 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
{
"name": "cron",
"description": "Cron jobs for your node",
"version": "1.8.2",
"author": "Nick Campbell <nicholas.j.campbell@gmail.com> (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": {
"lint": "eslint {lib,tests}/*.js",
"test": "jest --coverage"
},
"dependencies": {
"luxon": "^1.23.x"
},
"devDependencies": {
"chai": "~4.2.x",
"eslint": "~6.8.x",
"eslint-config-prettier": "^6.11.x",
"eslint-config-standard": "~14.1.x",
"eslint-module-utils": "~2.6.x",
"eslint-plugin-import": "~2.20.x",
"eslint-plugin-jest": "~23.8.x",
"eslint-plugin-node": "~11.1.x",
"eslint-plugin-prettier": "~3.1.x",
"eslint-plugin-promise": "~4.2.x",
"eslint-plugin-standard": "~4.0.x",
"jest": "~25.4.x",
"prettier": "~2.0.x",
"sinon": "^9.0.x"
},
"keywords": [
"cron",
"node cron",
"node-cron",
"schedule",
"scheduler",
"cronjob",
"cron job"
],
"license": "MIT",
"contributors": [
"Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
"James Padolsey <> (https://github.com/jamespadolsey)",
"Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
"Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
"Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
"humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
"Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
"Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
"Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
"Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
"Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
"Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
"Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
"Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
],
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/*.js"
],
"coverageThreshold": {
"global": {
"statements": 80,
"branches": 80,
"functions": 70,
"lines": 80
}
}
}
}