forked from node-schedule/node-schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "node-schedule",
"version": "2.0.0",
"description": "A cron-like and not-cron-like job scheduler for Node.",
"keywords": [
"schedule",
"task",
"job",
"cron",
"recurrent",
"in-memory"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "tape test/*.js",
"test:browser": "airtap test/cancel-long-running-jobs.js test/convenience-method-test.js test/date-convenience-methods-test.js test/range-test.js test/recurrence-rule-test.js test/schedule-cron-jobs.js test/start-end-test.js",
"coveralls": "nyc report --reporter=lcov",
"test:coverage": "nyc tape test/*.js",
"lint": "eslint lib test",
"lint:fix": "eslint --fix lib test"
},
"author": {
"name": "Matt Patenaude",
"email": "[email protected]",
"url": "https://mattpatenaude.com"
},
"contributors": [
{
"name": "Igor Savin",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/node-schedule/node-schedule.git"
},
"dependencies": {
"cron-parser": "^3.1.0",
"long-timeout": "0.1.1",
"sorted-array-functions": "^1.3.0"
},
"devDependencies": {
"airtap": "^4.0.1",
"eslint": "^7.18.0",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"tape": "^5.1.1"
},
"engines": {
"node": ">=6"
},
"files": [
"CHANGELOG.md",
"README.md",
"UPGRADING.md",
"LICENSE",
"lib/*"
]
}