{
  "name": "qhistory",
  "version": "1.1.0",
  "description": "Wrap history with query support",
  "main": "lib/index.js",
  "module": "es/index.js",
  "files": [
    "lib",
    "umd",
    "es",
    "LICENSE",
    "*.md",
    "index.d.ts"
  ],
  "scripts": {
    "prebuild": "rimraf lib umd es",
    "build": "npm run build:lib && npm run build:umd && npm run build:min && npm run build:es",
    "build:es": "cross-env BABEL_ENV=es babel ./src -d es",
    "build:lib": "cross-env BABEL_ENV=cjs babel ./src -d lib",
    "build:umd": "webpack --define process.env.NODE_ENV=\"'production'\" --output-filename=umd/qhistory.js",
    "build:min": "webpack -p --optimize-minimize --output-filename=umd/qhistory.min.js",
    "prepublish": "npm run build",
    "test": "jest"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/pshrmn/qhistory.git"
  },
  "keywords": [
    "history",
    "query",
    "search"
  ],
  "author": "Paul Sherman",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/pshrmn/qhistory/issues"
  },
  "homepage": "https://github.com/pshrmn/qhistory#readme",
  "peerDependencies": {
    "history": ">=4.0.0"
  },
  "dependencies": {
    "invariant": "^2.2.2"
  },
  "devDependencies": {
    "babel-cli": "^6.22.2",
    "babel-core": "^6.22.1",
    "babel-jest": "^18.0.0",
    "babel-loader": "^6.2.10",
    "babel-plugin-transform-export-extensions": "^6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.22.0",
    "babel-preset-es2015": "^6.22.0",
    "cross-env": "^3.1.4",
    "history": "^5.0.0",
    "jest": "^18.1.0",
    "qs": "^6.3.0",
    "rimraf": "^2.5.4",
    "webpack": "^2.2.1"
  }
}
