{
  "name": "history-query-enhancer",
  "version": "1.0.4",
  "description": "Enhance session history with query property",
  "main": "lib/index.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "files": [
    "dist",
    "lib",
    "es",
    "src",
    "index.d.ts"
  ],
  "scripts": {
    "clean": "rimraf dist lib es coverage",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix && tslint -p .",
    "test": "jest --colors",
    "test:coverage": "npm test -- --coverage",
    "start": "tsc --outDir lib -w",
    "build:es": "tsc --outDir es -d",
    "build:commonjs": "tsc -m commonjs --outDir lib",
    "build:dev-umd": "cross-env NODE_ENV=development rollup -c -i src/index.ts -o dist/history-query-enhancer.js",
    "build:prod-umd": "cross-env NODE_ENV=production rollup -c -i src/index.ts -o dist/history-query-enhancer.min.js",
    "build": "npm-run-all -p build:*",
    "prepare": "npm run clean && npm run lint && npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yenshih/history-query-enhancer.git"
  },
  "keywords": [
    "history",
    "query",
    "enhancer"
  ],
  "authors": [
    "Shi Yan <yenshih95@gmail.com> (https://github.com/yenshih)"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/yenshih/history-query-enhancer/issues"
  },
  "npmName": "history-query-enhancer",
  "dependencies": {},
  "devDependencies": {
    "@types/history": "^4.6.2",
    "@types/jest": "^23.1.1",
    "@types/qs": "^6.5.1",
    "@types/query-string": "^6.1.0",
    "@types/redux": "^3.6.0",
    "coveralls": "^3.0.1",
    "cross-env": "^5.2.0",
    "eslint": "^4.19.1",
    "eslint-plugin-import": "^2.12.0",
    "history": "^4.7.2",
    "husky": "^0.14.3",
    "jest": "^23.1.0",
    "lint-staged": "^7.2.0",
    "npm-run-all": "^4.1.3",
    "qs": "^6.5.2",
    "query-string": "^6.1.0",
    "redux": "^4.0.0",
    "rollup": "^0.61.1",
    "rollup-plugin-typescript2": "^0.15.0",
    "rollup-plugin-uglify": "^4.0.0",
    "ts-jest": "^22.4.6",
    "tslint": "^5.10.0",
    "tslint-config-airbnb": "^5.9.2",
    "typescript": "^2.9.2",
    "typescript-eslint-parser": "^16.0.0"
  },
  "peerDependencies": {
    "history": "^4.0.0"
  },
  "browserify": {
    "transform": [
      "loose-envify"
    ]
  },
  "sideEffects": false
}
