-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "promise-settled-aggregate",
"version": "0.5.1",
"main": "dist/promiseSettledAggregate.cjs",
"module": "dist/promiseSettledAggregate.js",
"browser": "dist/promiseSettledAggregate.cjs",
"types": "promiseSettledAggregate.d.ts",
"files": [
"dist/*",
"promiseSettledAggregate.d.ts",
"promiseSettledAggregate.ts"
],
"scripts": {
"prepare": "tsc && scripts/build.sh",
"test": "jest",
"lint": "eslint *.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefee/promise-settled-aggregate.git"
},
"author": "Stef Jones <stef@srilq.email>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/stefee/promise-settled-aggregate/issues"
},
"homepage": "https://github.com/stefee/promise-settled-aggregate#readme",
"description": "Works like Promise.allSettled except it will reject with an AggregateError if some of the promises rejected, otherwise resolves with the fulfilled values.",
"keywords": [
"promise",
"promises",
"allsettled",
"settle",
"settled",
"promise.allsettled",
"promise.all",
"reject",
"rejected",
"error",
"aggregate",
"aggregateerror"
],
"devDependencies": {
"@swc-node/jest": "1.4.1",
"@swc/cli": "0.1.52",
"@swc/core": "1.2.118",
"@types/jest": "27.0.3",
"@typescript-eslint/eslint-plugin": "5.5.0",
"eslint": "8.4.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.4.3",
"prettier": "2.5.1",
"typescript": "4.5.2"
}
}