-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.01 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
51
52
53
54
{
"name": "p-key-limit",
"version": "1.0.0",
"description": "Run multiple promise-returning & async functions with limited concurrency by key",
"main": "index.js",
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozomer/p-key-limit.git"
},
"keywords": [
"promise",
"limit",
"limited",
"concurrency",
"throttle",
"throat",
"rate",
"batch",
"ratelimit",
"task",
"queue",
"async",
"await",
"promises",
"bluebird",
"map",
"key",
"keyed",
"multi"
],
"author": "Oren Zomer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ozomer/p-key-limit/issues"
},
"homepage": "https://github.com/ozomer/p-key-limit#readme",
"xo": {
"space": true
},
"dependencies": {
"p-limit": "2.0.0"
},
"devDependencies": {
"ava": "*",
"delay": "^3.0.0",
"in-range": "^1.0.0",
"random-int": "^1.0.0",
"time-span": "^2.0.0",
"xo": "*"
}
}