forked from Flyrell/axios-auth-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "axios-auth-refresh",
"version": "2.0.2",
"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"
},
"dependencies": {
"axios": "~0.18.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^3.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
}
}