-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "promise-queue-plus",
"version": "1.2.2",
"description": "Promise-based queue. Support timeout, retry and so on.",
"homepage": "https://github.com/cnwhy/promise-queue-plus",
"main": "index.js",
"files": [
"index.js",
"create.js",
"src/*",
"dist/*",
"demo/*"
],
"scripts": {
"test": "mocha --bail --reporter spec test/mocha_*.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/mocha_*.js",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/mocha_*.js",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/cnwhy/promise-queue-plus.git"
},
"keywords": [
"Promise",
"queue",
"pool",
"Async",
"Q",
"队列"
],
"dependencies": {
"bluebird": "^3.0.0",
"easy-promise": "0.1.0",
"extend-promise": "^0.0.7"
},
"devDependencies": {
"express": "^4.12.3",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-header": "^2.0.7",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.1",
"istanbul": "0.3.15",
"mocha": "^2.5.3",
"q": "*"
},
"author": {
"name": "cnwhy",
"email": "[email protected]"
},
"license": "BSD-2-Clause"
}