-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.11 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
55
56
57
58
59
{
"name": "p-settle",
"version": "5.1.1",
"description": "Settle promises concurrently and get their fulfillment value or rejection reason with optional limited concurrency",
"license": "MIT",
"repository": "sindresorhus/p-settle",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"//test": "xo && ava && tsd",
"test": "ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"promise",
"settle",
"settled",
"resolved",
"iterator",
"fulfill",
"reject",
"fulfilled",
"rejected",
"reflect",
"inspect",
"error",
"async",
"await",
"promises",
"concurrently",
"concurrency",
"parallel",
"bluebird"
],
"dependencies": {
"p-limit": "^4.0.0",
"p-reflect": "^3.1.0"
},
"devDependencies": {
"ava": "^4.3.1",
"delay": "^5.0.0",
"in-range": "^3.0.0",
"time-span": "^5.0.0",
"tsd": "^0.21.0",
"xo": "^0.51.0"
}
}