-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 899 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
35
36
37
38
39
{
"name": "big-cheungus",
"version": "0.1.0",
"description": "Basically promise.all, but you can control how many runs at once",
"engines": {
"node": ">=10.0.0"
},
"main": "src/index.js",
"scripts": {
"test": "jest ."
},
"author": "David Cheung",
"license": "MIT",
"devDependencies": {
"jest": "^24.8.0",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"prettier": "^1.16.1"
},
"dependencies": {
"debug": "^4.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/davidcheung/big-cheungus"
},
"keywords": [
"promise",
"promise concurrency",
"promise limit",
"flow control",
"promise all"
]
}