{
  "name": "redux-elm",
  "version": "3.1.0",
  "description": "The Elm Architecture in Redux",
  "main": "lib/index.js",
  "files": [
    "lib",
    "src"
  ],
  "jsnext:main": "src/index.js",
  "scripts": {
    "build:lib": "./node_modules/.bin/babel src --out-dir lib && cp src/index.js.flow ./lib",
    "check": "npm run lint && npm run test",
    "lint": "./node_modules/.bin/eslint src/",
    "preversion": "npm run check",
    "version": "npm run build:lib",
    "postversion": "git push && git push --tags",
    "prepublish": "npm run build:lib",
    "test": "./node_modules/.bin/mocha --require babel-core/register --recursive",
    "test:watch": "npm test -- --watch",
    "docs:clean": "rimraf _book",
    "docs:prepare": "gitbook install",
    "docs:build": "npm run docs:prepare && gitbook build -g salsita/redux-elm",
    "docs:watch": "npm run docs:prepare && gitbook serve",
    "docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:salsita/redux-elm gh-pages --force"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/salsita/redux-elm.git"
  },
  "keywords": [
    "redux",
    "elm",
    "flux"
  ],
  "author": "Tomas Weiss <tomas.weiss2@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/salsita/redux-elm/issues"
  },
  "engines": {
    "node": ">=5.0.0",
    "npm": ">=3.0.0"
  },
  "homepage": "https://github.com/salsita/redux-elm#readme",
  "devDependencies": {
    "babel-cli": "^6.10.1",
    "babel-core": "^6.10.4",
    "babel-eslint": "^6.1.2",
    "babel-plugin-transform-runtime": "^6.7.5",
    "babel-preset-es2015": "^6.5.0",
    "babel-preset-react": "^6.11.1",
    "babel-preset-stage-0": "^6.5.0",
    "chai": "^3.5.0",
    "eslint": "^3.0.1",
    "eslint-config-airbnb": "^10.0.1",
    "eslint-plugin-import": "^1.10.2",
    "eslint-plugin-jsx-a11y": "^2.1.0",
    "eslint-plugin-react": "^6.1.1",
    "estraverse-fb": "^1.3.1",
    "gitbook-cli": "^2.3.0",
    "isparta": "^4.0.0",
    "mocha": "^3.0.2",
    "react": "^15.2.1",
    "redux": "^3.5.2",
    "redux-saga": "^0.11.0",
    "rimraf": "^2.5.3",
    "rxjs": "^5.0.0-beta.10",
    "sinon": "^1.17.3"
  },
  "dependencies": {
    "escape-string-regexp": "^1.0.5",
    "recompose": "^0.20.2"
  },
  "peerDependencies": {
    "react": "^15.0.2 || ^0.14.8",
    "redux-saga": "^0.11.0",
    "rxjs": "^5.0.0-beta.10"
  }
}
