mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
83 lines
2.4 KiB
JSON
83 lines
2.4 KiB
JSON
{
|
|
"name": "axios-cache-interceptor",
|
|
"version": "0.7.5",
|
|
"description": "Cache interceptor for axios",
|
|
"main": "./dist/index.js",
|
|
"jsdelivr": "./dist/index.bundle.js",
|
|
"unpkg": "./dist/index.bundle.js",
|
|
"runkitExampleFilename": "./examples/runkit.js",
|
|
"scripts": {
|
|
"build": "concurrently 'npm:build:*'",
|
|
"build:browser": "webpack",
|
|
"build:node": "tsc -p tsconfig.build.json",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"format": "prettier --write .",
|
|
"lint": "tsc --noEmit && eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"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://github.com/ArthurFiorette/axios-cache-interceptor#readme",
|
|
"dependencies": {
|
|
"cache-parser": "^1.1.1",
|
|
"fast-defer": "^1.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@arthurfiorette/prettier-config": "*",
|
|
"@babel/cli": "^7.16.0",
|
|
"@babel/core": "^7.16.0",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
|
|
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
"@babel/preset-env": "^7.16.4",
|
|
"@babel/preset-typescript": "^7.16.0",
|
|
"@babel/runtime": "^7.16.3",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^16.7.10",
|
|
"@types/webpack": "^5.28.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
|
"@typescript-eslint/parser": "^5.7.0",
|
|
"auto-changelog": "^2.3.0",
|
|
"axios": "~0.24.0",
|
|
"babel-loader": "^8.2.3",
|
|
"concurrently": "^6.4.0",
|
|
"eslint": "^8.3.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^27.4.4",
|
|
"prettier": "^2.3.2",
|
|
"prettier-plugin-jsdoc": "^0.3.23",
|
|
"prettier-plugin-organize-imports": "^2.3.3",
|
|
"ts-jest": "^27.1.1",
|
|
"typescript": "^4.5.3",
|
|
"weak-napi": "^2.0.2",
|
|
"webpack": "^5.65.0",
|
|
"webpack-cli": "^4.9.1"
|
|
},
|
|
"peerDependencies": {
|
|
"axios": "~0.24.0"
|
|
}
|
|
}
|