forked from Flyrell/axios-auth-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 789 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
{
"name": "axios-auth-refresh",
"version": "1.0.6",
"description": "Axios plugin which makes it very easy to automatically refresh the authorization tokens of your clients",
"keywords": [
"axios",
"authentication",
"authorization",
"refresh token",
"access token",
"interceptor",
"auto refresh"
],
"main": "dist/index.min.js",
"repository": "https://github.com/Flyrell/axios-auth-refresh",
"author": "Dawid Zbiński <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack"
},
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-loader": "^8.0.4",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
}
}