{
  "name": "redux-first-router-link",
  "version": "2.1.1",
  "description": "a simple but effective <Link /> component for redux-first-router (better for SEO rather than dispatching yourself)",
  "main": "dist/index.js",
  "scripts": {
    "build": "babel src -d dist",
    "build:umd": "BABEL_ENV=commonjs NODE_ENV=development webpack src/Link.js dist/redux-first-router-link.js",
    "build:umd:min": "BABEL_ENV=commonjs NODE_ENV=production webpack src/Link.js dist/redux-first-router-link.min.js",
    "flow-copy": "flow-copy-source src dist",
    "flow-watch": "clear; printf \"\\033[3J\" & npm run flow & fswatch -o ./ | xargs -n1 -I{} sh -c 'clear; printf \"\\033[3J\" && npm run flow'",
    "flow": "flow; test $? -eq 0 -o $? -eq 2",
    "test": "jest",
    "clean": "rimraf dist && mkdir dist",
    "lint": "eslint --fix ./",
    "format": "prettier --single-quote --parser=flow --semi=false --write '{src,__tests__,__test-helpers__}/**/*.js' && npm run lint",
    "precommit": "lint-staged --verbose && npm test",
    "cm": "git-cz",
    "semantic-release": "npx semantic-release",
    "prepublishOnly": "npm run clean && npm run build && npm run flow-copy && npm run build:umd && npm run build:umd:min"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/faceyspacey/redux-first-router-link.git"
  },
  "author": "James Gillmore <james@faceyspacey.com>",
  "maintainers": [
    "Zackary Jackson <zack@ScriptedAlchemy.com>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/faceyspacey/redux-first-router-link/issues"
  },
  "homepage": "https://github.com/faceyspacey/redux-first-router-link#readme",
  "jest": {
    "verbose": true,
    "moduleFileExtensions": [
      "js"
    ]
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-eslint": "^7.2.3",
    "babel-loader": "^7.1.1",
    "babel-plugin-flow-react-proptypes": "^4.1.0",
    "babel-plugin-transform-flow-strip-types": "^6.22.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-flow": "^6.23.0",
    "babel-preset-react": "^6.24.1",
    "babel-preset-stage-0": "^6.24.1",
    "commitizen": "^2.9.6",
    "cz-conventional-changelog": "^2.0.0",
    "eslint": "^4.4.1",
    "eslint-config-airbnb": "^15.1.0",
    "eslint-plugin-flowtype": "^2.35.0",
    "eslint-plugin-import": "^2.7.0",
    "eslint-plugin-jsx-a11y": "^6.0.2",
    "eslint-plugin-react": "^7.2.1",
    "flow-bin": "^0.52.0",
    "flow-copy-source": "^1.2.0",
    "husky": "^0.14.3",
    "jest": "^20.0.4",
    "lint-staged": "^4.0.3",
    "prettier": "^1.5.3",
    "react": "^15.x",
    "react-redux": "^5.x",
    "react-test-renderer": "^15.6.1",
    "redux": "^3.x",
    "redux-first-router": "^2.1.1",
    "rimraf": "^2.6.1",
    "semantic-release": "^15.12.4",
    "travis-github-status": "^1.6.3",
    "webpack": "3.5.5"
  },
  "peerDependencies": {
    "react": "*",
    "react-redux": "*",
    "redux": "*",
    "redux-first-router": "^2.1.1"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.js": [
      "prettier --single-quote --parser=flow --semi=false --write",
      "eslint --fix",
      "git add"
    ]
  },
  "dependencies": {
    "path-to-regexp": "^1.7.0",
    "prop-types": "^15.5.10",
    "rudy-history": "^1.0.0",
    "rudy-match-path": "^0.3.0"
  }
}
