forked from NodeDisque/disque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 996 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
{
"name": "disque",
"version": "0.0.1",
"description": "A redis-based job queue that never sucks",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test DEBUG=disque:* mocha",
"test:cov": "NODE_ENV=test DEBUG=disque:* node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -R spec"
},
"author": {
"name": "luin",
"email": "[email protected]",
"url": "http://zihua.li"
},
"keywords": [
"disque",
"cluster",
"queue",
"message"
],
"repository": {
"type": "git",
"url": "git://github.com/luin/disque.git"
},
"license": "MIT",
"dependencies": {
"debug": "^2.1.3",
"ioredis": "^1.1.4",
"lodash": "^3.8.0"
},
"engines": {
"node": ">= 0.11.16",
"iojs": ">= 1.0.0"
},
"devDependencies": {
"chai": "^2.3.0",
"codeclimate-test-reporter": "0.0.4",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"server-destroy": "^1.0.0",
"sinon": "^1.14.1"
}
}