{
  "name": "redux-create",
  "version": "1.0.10",
  "description": "redux create reducer, action creator, async action creator, action type",
  "main": "dist/index.js",
  "typings": "./index.d.ts",
  "repository": {
    "url": "https://github.com/marcelmokos/redux-create.git",
    "type": "git"
  },
  "authors": [
    "Marcel Mokoš (https://github.com/marcelmokos)",
    "Martin Litvaj (https://github.com/Kamahl19)"
  ],
  "keywords": [
    "react",
    "redux",
    "reducer",
    "create reducer",
    "action",
    "action type",
    "action creator",
    "async action creator",
    "typescript",
    "flow"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=4"
  },
  "dependencies": {
    "lodash": "^4.17.4"
  },
  "scripts": {
    "flow:setup": "yarn && flow-typed install && flow-typed update",
    "flow": "flow --show-all-errors",
    "flow:watch": "flow-watch",
    "flow:coverage": "flow coverage ./src/index.js --color",
    "prepush": "yarn test",
    "test": "jest",
    "test:watch": "yarn test --watch",
    "test:update": "yarn test --update",
    "test:coverage": "yarn test --coverage",
    "test:travis:coverage": "jest /dist/ --coverage",
    "lint": "eslint . --cache",
    "lint:fix": "yarn run lint --fix",
    "lint:staged": "yarn lint:fix --rule 'no-console:2' --rule 'no-debugger:2'",
    "precommit": "lint-staged",
    "clean": "rimraf dist coverage",
    "build": "BABEL_ENV=production babel src --out-dir dist",
    "release-patch": "npm version patch -m \"Upgrade to %s\" && npm publish",
    "release-minor": "npm version minor -m \"Upgrade to %s\" && npm publish",
    "release-major": "npm version major -m \"Upgrade to %s\" && npm publish"
  },
  "lint-staged": {
    "*.{js,jsx}": [
      "lint:staged",
      "git add"
    ],
    "*.{json,css}": [
      "prettier --write",
      "git add"
    ]
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-plugin-styled-components": "^1.2.0",
    "babel-preset-react-app": "^3.0.2",
    "coveralls": "^2.11.15",
    "cross-env": "^5.0.5",
    "eslint": "^4.7.2",
    "eslint-config-with-prettier": "^1.0.0",
    "flow-bin": "^0.55.0",
    "flow-typed": "^2.1.5",
    "flow-watch": "^1.1.1",
    "husky": "^0.14.3",
    "jest": "^21.1.0",
    "lint-staged": "^4.2.2",
    "prettier": "^1.7.0",
    "rimraf": "^2.6.1"
  },
  "jest": {
    "testEnvironment": "node",
    "verbose": true
  }
}
