-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
{
"name": "@handy-common-utils/promise-utils",
"version": "1.7.1",
"description": "Promise related utilities",
"scripts": {
"pretest": "eslint . --ext .ts",
"test": "nyc mocha",
"prepare": "shx rm -rf dist && tsc && es-check",
"preversion": "generate-api-docs-and-update-readme && git add README.md"
},
"files": [
"package.json",
"dist"
],
"main": "dist/promise-utils.js",
"types": "dist/promise-utils.d.ts",
"bin": {},
"devDependencies": {
"@handy-common-utils/dev-dependencies-mocha": "^1.10.1",
"@types/node": "^18.17.1"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/handy-common-utils/promise-utils#readme",
"repository": {
"type": "git",
"url": "https://github.com/handy-common-utils/promise-utils.git"
},
"bugs": {
"url": "https://github.com/handy-common-utils/promise-utils/issues"
},
"keywords": [
"promise",
"utils",
"retry",
"delay",
"resolve",
"reject",
"utilities"
],
"author": "James Hu",
"license": "Apache-2.0",
"volta": {
"node": "18.17.0",
"npm": "9.6.7"
}
}