-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 KB
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
45
46
47
48
49
50
51
{
"name": "super-queue",
"version": "0.2.0",
"description": "基于Redis的简单消息队列模块(Node.js)",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"coverage": "istanbul cover _mocha -- -t 10000",
"test-debug": "export DEBUG='super-queue:*' && mocha -t 10000",
"test": "mocha -t 10000",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"lint": "eslint lib test example --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperID/super-queue.git"
},
"keywords": [
"queue",
"redis",
"mq",
"message",
"pull",
"push",
"sub",
"pub"
],
"author": "Zongmin Lei <leizongmin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuperID/super-queue/issues"
},
"homepage": "https://github.com/SuperID/super-queue#readme",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"bluebird": "^3.4.7",
"debug": "^2.6.0",
"ioredis": "^3.1.1",
"lei-utils": "^3.1.0"
},
"devDependencies": {
"conventional-changelog": "^1.1.0",
"eslint-config-lei": "0.0.16",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}