forked from node-cron/node-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "node-cron",
"version": "2.0.2",
"description": "A simple cron-like task scheduler for Node.js",
"author": "Lucas Merencia",
"license": "ISC",
"homepage": "https://github.com/merencia/node-cron",
"main": "src/node-cron.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"check": "npm test && npm run coverage",
"postinstall": "opencollective-postinstall"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/merencia/node-cron.git"
},
"keywords": [
"cron",
"scheduler",
"schedule",
"task",
"job"
],
"bugs": {
"url": "https://github.com/merencia/node-cron/issues"
},
"devDependencies": {
"coveralls": "^3.0.2",
"expect.js": "^0.3.1",
"istanbul": "^0.4.2",
"mocha": "^4.0.1",
"nyc": "^13.0.1",
"opencollective-postinstall": "^2.0.0",
"sinon": "^4.1.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/node-cron",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.2.0"
},
"dependencies": {
"tz-offset": "0.0.1"
}
}