forked from Flyrell/axios-auth-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "axios-auth-refresh",
"version": "3.3.1",
"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.19.0 || >= 0.19.1"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"axios": "^0.21.4",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"jest": "^27.2.0",
"terser-webpack-plugin": "^5.2.4",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
}
}