2021-10-12 20:08:35 -03:00

65 lines
1.7 KiB
JSON

{
"name": "axios-cache-interceptor",
"version": "0.4.0",
"description": "Cache interceptor for axios",
"main": "dist/index.js",
"scripts": {
"build": "tsc --p tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prettify": "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": "arthur.fiorette@gmail.com",
"url": "https://arthurfiorette.com.br"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ArthurFiorette/axios-cache-interceptor/issues"
},
"homepage": "https://github.com/ArthurFiorette/axios-cache-interceptor#readme",
"dependencies": {
"@tusbar/cache-control": "^0.6.0",
"typed-core": "^1.3.0"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "^1.0.6",
"@types/jest": "^27.0.2",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"auto-changelog": "^2.3.0",
"axios": "^0.23.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.1",
"prettier": "^2.3.2",
"prettier-plugin-jsdoc": "^0.3.23",
"prettier-plugin-organize-imports": "^2.3.3",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"axios": "~0.23.0"
}
}