1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| {
| "name": "promise-all-reject-late",
| "version": "1.0.1",
| "description": "Like Promise.all, but save rejections until all promises are resolved",
| "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
| "license": "ISC",
| "scripts": {
| "test": "tap",
| "preversion": "npm test",
| "postversion": "npm publish",
| "prepublishOnly": "git push origin --follow-tags"
| },
| "tap": {
| "check-coverage": true
| },
| "devDependencies": {
| "tap": "^14.10.5"
| },
| "funding": {
| "url": "https://github.com/sponsors/isaacs"
| }
| }
|
|