{
  "name": "redux-easy-async",
  "version": "0.0.14",
  "description": "Redux Easy Async makes handling asynchronous actions, such as API requests, simple, reliable, and powerful",
  "main": "dist/index.js",
  "scripts": {
    "test": "yarn run lint && cross-env NODE_ENV=test nyc mocha",
    "mocha": "mocha --compilers js:babel-register",
    "mocha-watch": "yarn run mocha -- --watch",
    "test-cov": "cross-env NODE_ENV=test nyc mocha",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "lint": "eslint .",
    "lint-file": "eslint",
    "fix-lint": "eslint . --fix",
    "prepublish": "yarn run build",
    "clean": "rm -rf dist",
    "babel": "babel src --out-dir dist",
    "build": "yarn run clean && yarn run babel",
    "dev": "yarn run babel -- --watch",
    "docs": "node build-docs.js"
  },
  "author": "Evan Hobbs <evanhobbs@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/evanhobbs/redux-easy-async"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "chai": "^3.5.0",
    "flux-standard-action": "^1.2.0",
    "jsdoc-babel": "^0.3.0",
    "jsdoc-to-markdown": "^3.0.0",
    "lodash": "^4.17.4",
    "markdown-toc": "^1.1.0",
    "redux": "^3.6.0"
  },
  "devDependencies": {
    "babel-cli": "^6.24.0",
    "babel-plugin-istanbul": "^4.1.1",
    "babel-plugin-lodash": "^3.2.11",
    "babel-plugin-transform-export-extensions": "^6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.23.0",
    "babel-preset-env": "^1.2.2",
    "babel-preset-es2015": "^6.24.0",
    "babel-register": "^6.24.0",
    "coveralls": "^2.13.1",
    "cross-env": "^4.0.0",
    "eslint": "^3.18.0",
    "eslint-config-airbnb": "^14.1.0",
    "eslint-config-airbnb-base": "^11.1.1",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^#.#.#",
    "eslint-plugin-mocha": "^4.9.0",
    "eslint-plugin-react": "^#.#.#",
    "mocha": "^3.2.0",
    "nyc": "^10.2.0",
    "redux-mock-store": "^1.2.2"
  },
  "nyc": {
    "require": [
      "babel-register"
    ],
    "sourceMap": false,
    "instrument": false,
    "reporter": [
      "lcov",
      "text"
    ]
  }
}
