{
  "name": "redux-actions",
  "version": "2.2.1",
  "description": "Flux Standard Action utlities for Redux",
  "main": "lib/index.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "scripts": {
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore *-test.js",
    "build:commonjs": "babel src --out-dir lib --ignore *-test.js",
    "build:umd": "cross-env NODE_ENV=development webpack",
    "build:umd:min": "cross-env NODE_ENV=production webpack",
    "build": "npm run clean && npm run build:es && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
    "clean": "rimraf lib es",
    "lint": "esw build src webpack.config --color",
    "lint:fix": "npm run lint -- --fix",
    "lint:watch": "npm run lint -- --watch",
    "prepublish": "npm run lint && npm run test && npm run build",
    "test": "mocha --compilers js:babel-register src/**/*-test.js",
    "test:watch": "npm run test -- --watch src/**/*-test.js",
    "docs:clean": "rimraf _book",
    "docs:prepare": "gitbook install",
    "docs:build": "npm run docs:prepare && gitbook build -g acdlite/redux-actions",
    "docs:watch": "npm run docs:prepare && gitbook serve",
    "docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && 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:acdlite/redux-actions gh-pages --force"
  },
  "files": [
    "es",
    "lib",
    "dist"
  ],
  "keywords": [
    "flux",
    "redux",
    "fsa",
    "actions"
  ],
  "author": "Andrew Clark <acdlite@me.com>",
  "bugs": {
    "url": "https://github.com/acdlite/redux-actions/issues"
  },
  "homepage": "https://github.com/acdlite/redux-actions",
  "repository": {
    "type": "git",
    "url": "https://github.com/acdlite/redux-actions.git"
  },
  "license": "MIT",
  "devDependencies": {
    "babel-cli": "^6.7.7",
    "babel-core": "^6.7.7",
    "babel-eslint": "^6.1.1",
    "babel-loader": "^6.2.4",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-stage-0": "^6.5.0",
    "babel-register": "^6.7.2",
    "chai": "^3.0.0",
    "cross-env": "^2.0.0",
    "eslint": "^2.8.0",
    "eslint-config-airbnb-base": "^1.0.3",
    "eslint-plugin-import": "^1.5.0",
    "eslint-watch": "^2.1.13",
    "flux-standard-action": "^1.0.0",
    "gitbook-cli": "^2.3.0",
    "mocha": "^2.2.5",
    "rimraf": "^2.5.3",
    "webpack": "^1.13.1"
  },
  "dependencies": {
    "invariant": "^2.2.1",
    "lodash": "^4.13.1",
    "lodash-es": "^4.17.4",
    "reduce-reducers": "^0.1.0"
  }
}
