mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
85 lines
2.2 KiB
JSON
85 lines
2.2 KiB
JSON
{
|
|
"name": "axios-cache-interceptor",
|
|
"version": "0.8.5",
|
|
"description": "Cache interceptor for axios",
|
|
"main": "./cjs/index.js",
|
|
"types": "./cjs/index.d.ts",
|
|
"module": "./esm/index.js",
|
|
"exports": {
|
|
"import": "./esm/index.js",
|
|
"require": "./cjs/index.js",
|
|
"default": "./umd/index.js"
|
|
},
|
|
"browser": "./umd/index.js",
|
|
"jsdelivr": "./umd/index.js",
|
|
"unpkg": "./umd/index.js",
|
|
"sideEffects": false,
|
|
"runkitExampleFilename": "./examples/runkit.js",
|
|
"scripts": {
|
|
"build": "sh build/build.sh",
|
|
"test": "tsc --noEmit && jest --coverage",
|
|
"check": "sh build/check.sh",
|
|
"format": "prettier --write .",
|
|
"lint": "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.2.0",
|
|
"fast-defer": "^1.1.3",
|
|
"object-code": "^1.0.1"
|
|
},
|
|
"resolutions": {
|
|
"colors": "1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@arthurfiorette/prettier-config": "*",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/webpack": "^5.28.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
|
"@typescript-eslint/parser": "^5.10.0",
|
|
"auto-changelog": "^2.3.0",
|
|
"axios": "~0.25.0",
|
|
"es-check": "^6.1.1",
|
|
"eslint": "^8.7.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^27.4.7",
|
|
"prettier": "^2.5.1",
|
|
"prettier-plugin-jsdoc": "^0.3.30",
|
|
"prettier-plugin-organize-imports": "^2.3.4",
|
|
"ts-jest": "^27.1.3",
|
|
"ts-loader": "^9.2.6",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.5.4",
|
|
"webpack": "^5.66.0",
|
|
"webpack-cli": "^4.9.1"
|
|
},
|
|
"peerDependencies": {
|
|
"axios": "~0.25.0"
|
|
},
|
|
"packageManager": "yarn@1.22.17"
|
|
}
|