-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "retryx",
"version": "0.0.9",
"description": "Promise-based retry workflow library.",
"main": "index.js",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"prepublish": "publish-please guard",
"postpublish": "npm run clean",
"pretest": "tsc",
"start": "npm run watch",
"test": "nyc ava",
"posttest": "npm run clean",
"build": "npm test && npm run lint && tsc --project tsconfig.dist.json",
"clean": "rm -rf dist lib/*.d.ts lib/*.js lib/*.js.map test/*.d.ts test/*.js test/*.js.map",
"lint": "tslint lib/**/*.ts test/**/*.ts --exclude *.d.ts",
"docs": "typedoc --out docs",
"watch": "tsc && concurrently --raw --kill-others 'tsc --watch' 'ava --watch'",
"publish-please": "publish-please"
},
"repository": {
"type": "git",
"url": "git+https://github.com/y13i/retryx.git"
},
"keywords": [
"retry",
"promise",
"backoff",
"error handling",
"timeout"
],
"author": {
"name": "Yoriki Yamaguchi",
"email": "[email protected]",
"url": "https://y13i.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/y13i/retryx/issues"
},
"homepage": "https://github.com/y13i/retryx#readme",
"devDependencies": {
"@types/node": "20.15.0",
"@types/sinon": "10.0.15",
"ava": "5.2.0",
"concurrently": "8.0.1",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"publish-please": "5.5.2",
"sinon": "15.0.3",
"tslint": "6.1.3",
"typedoc": "0.23.28",
"typescript": "5.0.4"
}
}