{
  "name": "axios-extensions",
  "version": "3.1.3",
  "description": "make axios great again",
  "homepage": "https://github.com/kuitos/axios-extensions",
  "repository": "https://github.com/kuitos/axios-extensions.git",
  "license": "MIT",
  "author": "kuitos",
  "keywords": [
    "axios",
    "cache",
    "extensions",
    "adapter"
  ],
  "main": "./lib/index.js",
  "module": "./esm/index.js",
  "types": "./esm/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "rm -fr dist && npm run tsc && npm run dist",
    "tsc": "npm run tsc:cjs & npm run tsc:esm",
    "tsc:cjs": "rm -fr lib && tsc",
    "tsc:esm": "rm -fr esm && tsc -p tsconfig.esm.json",
    "dist": "rm -fr dist && rollup -c rollup.config.js",
    "start": "tsc -w && ava -w",
    "prepush": "npm run lint",
    "prepublishOnly": "npm run build",
    "release": "np --no-cleanup --yolo --no-publish",
    "test": "npm run tsc:cjs && nyc ava -v",
    "test:pure": "tsc && ava",
    "report": "nyc report --reporter=html",
    "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "coverageCheck": "nyc --check-coverage --lines 80 --functions 80 --branches 80 npm run test:pure",
    "lint": "tslint 'src/**/*.ts' & npm run coverageCheck"
  },
  "files": [
    "esm",
    "lib",
    "dist"
  ],
  "dependencies": {
    "@types/lru-cache": "^4.1.1",
    "lru-cache": "^5.1.1",
    "tslib": "^1.9.0",
    "util": "^0.11.1"
  },
  "peerDependencies": {
    "axios": "*"
  },
  "devDependencies": {
    "@types/node": "^10.0.3",
    "@types/sinon": "^4.3.1",
    "ava": "^0.25.0",
    "axios": "^0.18.0",
    "codecov": "^3.1.0",
    "husky": "^0.14.1",
    "np": "^6.1.0",
    "nyc": "^13.1.0",
    "rollup": "^1.12.4",
    "rollup-plugin-commonjs": "^10.0.0",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-resolve": "^5.0.0",
    "rollup-plugin-terser": "^6.1.0",
    "rollup-plugin-uglify": "^6.0.2",
    "sinon": "^5.0.3",
    "tslint": "^5.8.0",
    "tslint-eslint-rules": "^4.1.1",
    "typescript": "^2.8.1"
  },
  "ava": {
    "files": "lib/**/__tests__/**/*.js"
  }
}
