-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
57 lines (57 loc) · 1.17 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": "retry-axios",
"version": "0.0.0",
"description": "Retry HTTP requests with Axios.",
"exports": "./build/src/index.js",
"type": "module",
"types": "./build/src/index.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/JustinBeckwith/retry-axios.git"
},
"scripts": {
"fix": "biome check --write .",
"lint": "biome check .",
"compile": "tsc -p .",
"test": "c8 mocha build/test",
"pretest": "npm run compile",
"license-check": "jsgl --local ."
},
"keywords": [
"axios",
"retry"
],
"author": {
"name": "Justin Beckwith"
},
"license": "Apache-2.0",
"peerDependencies": {
"axios": "*"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/mocha": "^10.0.1",
"@types/node": "^22.0.0",
"@types/sinon": "^17.0.0",
"axios": "^1.2.1",
"c8": "^10.0.0",
"js-green-licenses": "^4.0.0",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"semantic-release": "^24.0.0",
"sinon": "^19.0.0",
"typescript": "~5.7.0"
},
"files": [
"build/src"
],
"c8": {
"exclude": [
"build/test",
"dist"
]
}
}