{
  "name": "redux-error-snapshot",
  "version": "1.3.1",
  "description": "Redux thunk utility that aims to ease the process of retrying last failed action",
  "main": "./lib/index.js",
  "scripts": {
    "clean": "rimraf ./lib",
    "prebuild": "npm run clean",
    "build": "babel src/ -d lib/",
    "postbuild": "flow-copy-source ./src ./lib",
    "build:watch": "npm run build -- -w",
    "lint": "eslint ./src",
    "flow": "flow",
    "test": "jest --env=node",
    "test:watch": "npm test -- --watch",
    "test:cov": "npm test && codecov",
    "test:ci": "npm run lint && npm run test:cov"
  },
  "jest": {
    "coverageDirectory": "./coverage/",
    "collectCoverage": true
  },
  "files": [
    "lib",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "redux",
    "flow",
    "redux-thunk",
    "async"
  ],
  "author": "Alberto Schiabel <https://github.com/jkomyno>",
  "license": "MIT",
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-eslint": "^8.0.1",
    "babel-jest": "^21.0.2",
    "babel-plugin-minify-constant-folding": "^0.2.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-env": "^1.6.0",
    "babel-preset-flow": "^6.23.0",
    "codecov": "^2.3.0",
    "eslint": "^4.8.0",
    "eslint-config-airbnb-base": "^12.0.1",
    "eslint-plugin-import": "^2.7.0",
    "flow-bin": "0.55.0",
    "flow-copy-source": "^1.2.1",
    "jest": "^21.0.2",
    "redux": "^3.7.2",
    "redux-mock-store": "^1.3.0",
    "rimraf": "^2.6.2"
  },
  "dependencies": {
    "redux-thunk": "^2.2.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jkomyno/redux-error-snapshot.git"
  }
}
