-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 817 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 817 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
35
{
"name": "a-promise-queue",
"version": "2.0.0",
"description": "A native es6 promise queue with optional retry attempts.",
"main": "index.js",
"scripts": {
"test": "tape test.js",
"lint": "standard",
"test-pretty": "tape test.js | faucet",
"test-travis": "nyc tape test.js | tap-spec",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"queue",
"promise",
"es6",
"parallel",
"series"
],
"repository": {
"type": "git",
"url": "https://github.com/e-e-e/a-promise-queue"
},
"author": "Benjamin Forster",
"license": "ISC",
"devDependencies": {
"bluebird": "^3.5.0",
"coveralls": "latest",
"faucet": "0.0.1",
"nyc": "latest",
"standard": "^10.0.3",
"tap-spec": "latest",
"tape": "latest"
}
}