-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 861 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
{
"name": "poolq",
"version": "0.4.0",
"description": "Basic task flow control for NodeJS.",
"keywords": ["pool", "queue", "tasks", "rate limit", "rate limiting", "concurrency", "concurrency control"],
"author": "Steven Berry <[email protected]",
"repository" : {
"type": "git",
"url": "https://github.com/sjberry/poolq.git"
},
"license": "MIT",
"main": "main",
"dependencies": {
"deferred-ap": "^0.1.0",
"js-priority-queue": "^0.1.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-eslint": "^4.0.0",
"gulp-gzip": "^1.4.0",
"gulp-jsonlint": "^1.2.0",
"gulp-mocha": "^4.3.1",
"gulp-rename": "^1.2.2",
"gulp-tar": "^2.0.0",
"run-sequence": "^2.2.0",
"sinon": "^4.0.0",
"sinon-chai": "^2.13.0"
}
}