forked from Flyrell/axios-auth-refresh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "xior-auth-refresh",
"version": "0.6.0",
"description": "Xior plugin which makes it very easy to automatically refresh the authorization tokens of your clients",
"keywords": [
"xior",
"authentication",
"authorization",
"refresh token",
"access token",
"interceptor",
"auto refresh"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Audiu/xior-auth-refresh.git"
},
"bugs": {
"url": "https://github.com/Audiu/xior-auth-refresh/issues"
},
"homepage": "https://github.com/Audiu/xior-auth-refresh#readme",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"module": "./dist/index.esm.js"
}
},
"author": "Dawid Zbiński <dawid@zbinski.eu>",
"contributors": [
"Dawid Zbiński <dawid@zbinski.eu>",
"Mike Goodfellow <mg.npm.email@gmail.com>"
],
"license": "MIT",
"private": false,
"scripts": {
"dev": "webpack --mode development",
"build": "bunchee -m",
"build:umd": "webpack --mode production",
"typescript": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"prettier": "prettier --write .",
"prettier:staged": "pretty-quick --staged",
"prepare": "husky install"
},
"peerDependencies": {
"xior": "^0.6.1"
},
"devDependencies": {
"bunchee": "^5.1.2",
"@types/jest": "^28.1.6",
"xior": "^0.6.1",
"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"
]
}