-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 803 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
{
"name": "run-queue",
"version": "2.0.0",
"description": "A promise based, dynamic priority queue runner, with concurrency limiting.",
"main": "queue.js",
"scripts": {
"test": "iarna-standard && tap --100 test",
"test-v4": "tap --100 test"
},
"keywords": [],
"author": "Rebecca Turner <[email protected]> (http://re-becca.org/)",
"license": "ISC",
"devDependencies": {
"@iarna/standard": "^2.0.0",
"tap": "^12.4.0"
},
"files": [
"queue.js"
],
"directories": {
"test": "test"
},
"dependencies": {
"aproba": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iarna/run-queue.git"
},
"bugs": {
"url": "https://github.com/iarna/run-queue/issues"
},
"homepage": "https://npmjs.com/package/run-queue"
}