{
  "name": "redux-actions",
  "version": "0.11.0",
  "description": "Flux Standard Action utlities for Redux",
  "main": "lib/index.js",
  "scripts": {
    "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:commonjs && npm run build:umd && npm run build:umd:min",
    "clean": "rimraf lib",
    "lint": "esw 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"
  },
  "files": [
    "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": "^0.6.0",
    "mocha": "^2.2.5",
    "rimraf": "^2.5.3",
    "webpack": "^1.13.1"
  },
  "dependencies": {
    "lodash": "^4.13.1",
    "reduce-reducers": "^0.1.0"
  }
}
