mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
72 lines
2.0 KiB
JSON
72 lines
2.0 KiB
JSON
{
|
|
"name": "axios-cache-interceptor",
|
|
"version": "0.8.0-beta1",
|
|
"description": "Cache interceptor for axios",
|
|
"types": "./dist/index.ts",
|
|
"main": "./dist/index.js",
|
|
"browser": "./dist/index.min.js",
|
|
"jsdelivr": "./dist/index.min.js",
|
|
"unpkg": "./dist/index.min.js",
|
|
"runkitExampleFilename": "./examples/runkit.js",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"test": "jest --coverage",
|
|
"escheck": "npx es-check es5 ./dist/index.es5.min.js && npx es-check es6 ./dist/index.min.js",
|
|
"format": "prettier --write .",
|
|
"lint": "tsc --noEmit && eslint . --ext .ts",
|
|
"version": "auto-changelog -p && git add CHANGELOG.md"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ArthurFiorette/axios-cache-interceptor.git"
|
|
},
|
|
"keywords": [
|
|
"axios",
|
|
"cache",
|
|
"interceptor",
|
|
"adapter",
|
|
"http",
|
|
"plugin",
|
|
"wrapper"
|
|
],
|
|
"author": {
|
|
"name": "Arthur Fiorette",
|
|
"email": "npm@arthur.place",
|
|
"url": "https://arthur.place"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ArthurFiorette/axios-cache-interceptor/issues"
|
|
},
|
|
"homepage": "https://axios-cache-interceptor.js.org/",
|
|
"dependencies": {
|
|
"cache-parser": "^1.1.2",
|
|
"fast-defer": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@arthurfiorette/prettier-config": "*",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^17.0.0",
|
|
"@types/webpack": "^5.28.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
"auto-changelog": "^2.3.0",
|
|
"axios": "~0.24.0",
|
|
"eslint": "^8.3.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^27.4.5",
|
|
"prettier": "^2.3.2",
|
|
"prettier-plugin-jsdoc": "^0.3.23",
|
|
"prettier-plugin-organize-imports": "^2.3.3",
|
|
"ts-jest": "^27.1.1",
|
|
"ts-loader": "^9.2.6",
|
|
"typescript": "^4.5.4",
|
|
"webpack": "^5.65.0",
|
|
"webpack-cli": "^4.9.1"
|
|
},
|
|
"peerDependencies": {
|
|
"axios": "~0.24.0"
|
|
}
|
|
}
|