forked from agenda/agenda
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 951 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
38
39
40
41
42
43
44
{
"name": "@classdojo/agenda",
"version": "0.7.0",
"description": "Light weight job scheduler for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha",
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/classdojo/agenda.git"
},
"keywords": [
"job",
"jobs",
"cron",
"delayed",
"scheduler",
"runner"
],
"author": "Ryan Schmukler <[email protected]> (http://slingingcode.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rschmukler/agenda/issues"
},
"dependencies": {
"human-interval": "~0.1.3",
"date.js": "~0.2.0",
"mongodb": "2.0.34",
"cron": "~1.0.1"
},
"devDependencies": {
"mocha": "~1.13.0",
"expect.js": "~0.2.0",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "~2.3.0",
"blanket": "~1.1.5",
"q": "~1.0.0"
}
}