forked from Flyrell/axios-auth-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "axios-auth-refresh",
"version": "3.0.0",
"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",
"types": "dist/index.d.ts",
"repository": "https://github.com/Flyrell/axios-auth-refresh",
"author": "Dawid Zbiński <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "jest",
"test-coverage": "jest --coverage"
},
"peerDependencies": {
"axios": "~0.18.0 || ~0.19.1 || ~0.20.0"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"axios": "^0.20.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"jest": "^25.5.4",
"terser-webpack-plugin": "^2.3.7",
"ts-jest": "^25.5.1",
"ts-loader": "^6.2.2",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"files": [
"dist/index.d.ts",
"dist/index.min.js"
]
}