forked from gregberge/node-taskman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "node-taskman",
"version": "0.4.5",
"description": "node-taskman is a node.js implementation of taskman worker. Taskman is a worker system that can be piloted directly in redis.",
"keywords": [
"worker",
"redis",
"task"
],
"author": "Bergé Greg <[email protected]> (http://www.neoziro.com/)",
"main": "./index",
"repository": {
"type": "git",
"url": "git://github.com/neoziro/node-taskman.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/neoziro/node-taskman/issues"
},
"engines": {
"node": ">=0.6.5"
},
"scripts": {
"test": "node ./tests.js",
"example": "node ./example.js"
},
"dependencies": {
"redis": "~0.8.3",
"optimist": "~0.5.2",
"lodash": "^2.4.1",
"async": "^0.9.0",
"moment": "^2.6.0"
},
"devDependencies": {
"chai": "~1.7.2",
"mocha": "~1.13.0",
"sinon": "~1.7.3",
"sinon-chai": "~2.4.0",
"chai-things": "~0.2.0",
"proxyquire": "~0.5.2"
},
"licence": "MIT"
}