-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
48
49
50
51
52
53
54
{
"name": "axios-auth-refresh",
"version": "3.3.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",
"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",
"typescript": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"prettier": "prettier --write .",
"prettier:staged": "pretty-quick --staged",
"prepare": "husky install"
},
"peerDependencies": {
"axios": ">= 0.18 < 0.19.0 || >= 0.19.1"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"axios": "^1.2.2",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "2.8.7",
"pretty-quick": "^3.1.3",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"typescript": "^4.9.4",
"webpack": "^5.73.0",
"webpack-cli": "^5.0.1"
},
"files": [
"dist",
"LICENSE"
]
}