{
  "name": "redux-first-routing",
  "version": "0.3.0",
  "description": "Redux-first routing",
  "main": "lib/index.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "license": "MIT",
  "homepage": "https://github.com/mksarge/redux-first-routing",
  "repository": {
    "type": "git",
    "url": "https://github.com/mksarge/redux-first-routing.git"
  },
  "bugs": {
    "url": "https://github.com/mksarge/redux-first-routing/issues"
  },
  "author": "Michael Sargent <michael-sargent@hotmail.com> (https://mksarge.com)",
  "keywords": [
    "redux",
    "first",
    "routing",
    "router",
    "middleware",
    "history"
  ],
  "engines": {
    "node": ">= 4"
  },
  "files": [
    "dist",
    "es",
    "lib"
  ],
  "dependencies": {
    "history": "^4.7.2",
    "query-string": "^5.0.0"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-eslint": "^8.0.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-register": "^6.24.1",
    "chai": "^4.1.2",
    "cross-env": "^5.0.5",
    "eslint": "^4.7.1",
    "eslint-config-airbnb-base": "^12.0.0",
    "eslint-plugin-import": "^2.7.0",
    "mocha": "^3.4.1",
    "rimraf": "^2.6.1",
    "rollup": "^0.50.0",
    "rollup-plugin-babel": "^3.0.2",
    "rollup-plugin-commonjs": "^8.2.1",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-replace": "^2.0.0",
    "rollup-plugin-uglify": "^2.0.1",
    "sinon": "^3.3.0"
  },
  "scripts": {
    "clean": "rimraf lib es dist",
    "lint": "eslint src test",
    "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
    "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
    "build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -i src/index.js -o dist/redux-first-routing.js",
    "build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -i src/index.js -o dist/redux-first-routing.min.js",
    "test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-core/register test/**/*.spec.js",
    "prepublish": "npm run lint && npm run test && npm run clean && npm run build"
  }
}
