-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 941 Bytes
/
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
{
"name": "axios-retry-after",
"version": "2.1.0",
"description": "A tiny HTTP 429 Retry-After interceptor for axios",
"repository": "https://github.com/compwright/axios-retry-after",
"bugs": "https://github.com/compwright/axios-retry-after/issues",
"keywords": [
"axios",
"retry",
"retry-after",
"api",
"rest"
],
"author": "Jonathon Hill <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">= 14"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"standard": {
"env": [
"jest"
]
},
"peerDependencies": {
"axios": "^1.0.0"
},
"devDependencies": {
"axios": "latest",
"jest": "latest",
"standard": "latest",
"standard-version": "latest",
"unbuild": "latest"
}
}