-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "tiny-promise-pool",
"version": "1.3.0",
"engines": {
"node": ">=6.4.0"
},
"description": "Tiny library for performing promises while limiting concurrency",
"main": "promise-pool.js",
"repository": "[email protected]:eetay/promise-pool-js.git",
"author": "Eetay Natan <[email protected]>",
"license": "MIT",
"keywords": [
"small",
"tiny",
"promise",
"promises",
"promises-a",
"promises-aplus",
"future",
"futures",
"deferred",
"deferreds",
"generator",
"generators",
"async",
"await",
"flow control",
"pool",
"queue",
"throttle",
"es6",
"node"
],
"dependencies": {},
"homepage": "https://github.com/eetay/promise-pool-js/blob/master/README.md",
"devDependencies": {
"eslint": "^6.7.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-security": "^1.4.0",
"global": "^4.4.0",
"jest": "^24.9.0"
},
"bugs": {
"url": "https://github.com:eetay/promise-pool-js/issues"
},
"scripts": {
"test": "jest --detectOpenHandles"
}
}