55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"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 <dawid@zbinski.eu>",
|
|
"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.7.1",
|
|
"pretty-quick": "^3.1.3",
|
|
"terser-webpack-plugin": "^5.3.3",
|
|
"ts-jest": "^28.0.7",
|
|
"ts-loader": "^9.3.1",
|
|
"typescript": "^4.7.4",
|
|
"webpack": "^5.73.0",
|
|
"webpack-cli": "^5.0.1"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LICENSE"
|
|
]
|
|
}
|