{
  "name": "saga-action-creator",
  "version": "1.1.9",
  "description": "A toolkit to auto generate actions for the redux-saga.",
  "repository": "https://github.com/Justinidlerz/saga-action-creator",
  "bugs": "https://github.com/Justinidlerz/saga-action-creator/issues",
  "main": "build/index.js",
  "typings": "build/index.d.ts",
  "scripts": {
    "test": "jest",
    "test:coverage": "yarn test --coverage",
    "build": "rollup -c",
    "prepublishOnly": "npm run build",
    "server": "parcel serve example/index.html",
    "watch:rollup": "rollup -cw",
    "start": "npm-run-all -p watch:rollup server"
  },
  "keywords": [
    "rollup",
    "parcel",
    "typescript"
  ],
  "author": "Justinidlerz <zqc.sunny@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "7.9.0",
    "@babel/preset-env": "7.9.0",
    "@babel/preset-typescript": "7.9.0",
    "@types/jest": "25.1.4",
    "@types/lodash": "^4.14.149",
    "@types/react": "16.9.26",
    "@types/react-dom": "^16.9.5",
    "@types/react-redux": "^7.1.7",
    "babel-preset-es2015-rollup": "^3.0.0",
    "jest": "25.2.3",
    "npm-run-all": "^4.1.5",
    "parcel": "^1.12.4",
    "prettier": "2.0.2",
    "react": "16.13.1",
    "react-dom": "16.13.1",
    "react-redux": "^7.2.0",
    "rollup": "2.2.0",
    "rollup-plugin-babel": "4.4.0",
    "rollup-plugin-typescript2": "0.27.0",
    "ts-jest": "^25.2.1",
    "typescript": "3.8.3"
  },
  "gitHooks": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
    "*.ts": [
      "jest",
      "git add"
    ]
  },
  "dependencies": {
    "lodash": "^4.17.15",
    "redux": "4.0.5",
    "redux-saga": "1.1.3"
  }
}
