-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 963 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
{
"name": "@lokeshpathrabe/axiosservice",
"version": "1.0.2",
"description": "APIService based on axios to manage auto refresh of auth tokens and retries on failure",
"main": "dist/bundle.js",
"files": [
"dist/bundle.js"
],
"scripts": {
"test": "jest --watch",
"build": "webpack"
},
"author": "lokeshpathrabe",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"axios": "^0.21.4",
"axios-mock-adapter": "^1.20.0",
"babel-loader": "^8.2.2",
"jest": "^27.2.0",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
},
"keywords": [
"axios",
"retry auth token",
"axio retry",
"axios interceptor",
"retry failed api"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:lokeshpathrabe/AxiosService.git"
}
}