forked from zackiles/bluebird-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 715 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 715 Bytes
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
{
"name": "bluebird-queue",
"version": "0.0.6",
"description": "Create promise queues with Bluebird promises. Add concurrency and delays.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/zackiles/bluebird-queue"
},
"bugs": {
"url": "https://github.com/zackiles/bluebird-queue/issues"
},
"keywords": [
"bluebird",
"promise",
"queue",
"concurrency"
],
"author": {
"name": "Zachary Iles",
"email": "[email protected]",
"url": "http://github.com/zackiles/"
},
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.24"
},
"devDependencies": {
"mocha": "^2.2.4"
}
}