forked from node-schedule/node-schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 787 Bytes
/
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
{
"name": "node-schedule",
"version": "1.2.0",
"description": "A cron-like and not-cron-like job scheduler for Node.",
"keywords": [
"schedule",
"task",
"job",
"cron"
],
"license": "MIT",
"main": "./lib/schedule.js",
"scripts": {
"test": "nodeunit",
"lint": "eslint lib"
},
"author": {
"name": "Matt Patenaude",
"email": "matt@mattpatenaude.com",
"url": "http://mattpatenaude.com"
},
"repository": {
"type": "git",
"url": "https://github.com/node-schedule/node-schedule.git"
},
"dependencies": {
"cron-parser": "1.1.0",
"long-timeout": "0.1.1"
},
"devDependencies": {
"coveralls": "^2.11.2",
"eslint": "^0.15.1",
"istanbul": "^0.4.5",
"nodeunit": "^0.10.2",
"sinon": "^1.14.1"
}
}