-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.07 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
{
"name": "promise-all-props",
"version": "3.0.0",
"description": "Like `Promise.all` but for object properties.",
"type": "module",
"exports": {
"types": "./main.d.ts",
"import": "./main.mjs"
},
"files": [
"main.mjs",
"main.d.ts"
],
"scripts": {
"test": "node test.mjs",
"test:ci": "npm test && npm run lint -- --max-warnings 0",
"lint": "eslint *.mjs",
"preversion": "npm test",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"eslint": "^8.6.0",
"tape": "^5.4.0"
},
"engines": {
"node": ">=16.0.0"
},
"eslintConfig": {
"env": {
"es2021": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"extends": "eslint:recommended"
},
"repository": {
"type": "git",
"url": "https://github.com/Siilwyn/promise-all-props.git"
},
"author": "Selwyn <talk@selwyn.cc> (https://selwyn.cc/)",
"license": "ISC",
"keywords": [
"promise",
"all",
"props",
"properties",
"object",
"bluebird"
]
}