forked from gregberge/node-taskman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 839 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
{
"name": "node-taskman",
"version": "1.0.3",
"description": "Fast work queue based on redis.",
"keywords": [
"work",
"queue",
"worker",
"redis",
"task",
"kue",
"bull"
],
"author": "Bergé Greg <berge.greg@gmail.com> (http://www.neoziro.com/)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/neoziro/node-taskman.git"
},
"bugs": {
"email": "berge.greg@gmail.com",
"url": "https://github.com/neoziro/node-taskman/issues"
},
"scripts": {
"test": "mocha --recursive"
},
"dependencies": {
"async": "^0.9.0",
"lodash": "^2.4.1",
"pipe-event": "^0.1.0",
"redis": "^0.11.0"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.20.1",
"sinon": "^1.10.2",
"sinon-chai": "^2.5.0"
},
"licence": "MIT"
}