{
  "name": "redux-epics-decorator",
  "version": "0.10.10",
  "description": "Dumb decorator for redux & redux-observable & react-redux & redux-actions",
  "main": "./index.js",
  "module": "es/index.js",
  "typings": "./index.d.ts",
  "sideEffects": false,
  "scripts": {
    "check_circular_dependencies": "madge lib/index.js --circular --warning",
    "compile": "yarn compile:es5 && yarn compile:module",
    "compile:es5": "rm -rf lib && tsc -p tsconfig.json --diagnostics --pretty",
    "compile:module": "rm -rf es && tsc -p tsconfig.json -m esnext --diagnostics --pretty --outDir es",
    "lint": "tslint -c tslint.json -p tsconfig.json && tslint -c tslint.json -p test/tsconfig.json",
    "start": "webpack-dev-server --config ./webpack.config.js --progress --color",
    "test": "rm -rf coverage && NODE_ENV=test karma start",
    "watch": "karma start",
    "publish_all": "ts-node ./tools/publish.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com:Brooooooklyn/redux-epics-decorator.git"
  },
  "keywords": [
    "Redux",
    "redux-observable",
    "rxjs",
    "TypeScript",
    "reflect-metadata"
  ],
  "author": "lynweklm@gmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Brooooooklyn/redux-effects-decorator/issues"
  },
  "homepage": "https://github.com/Brooooooklyn/redux-effects-decorator#readme",
  "dependencies": {
    "reflect-metadata": "^0.1.13",
    "tslib": "^1.10.0"
  },
  "peerDependencies": {
    "@asuka/di": "^0.3.4",
    "react": "^16.12.0",
    "react-redux": "^7.1.3",
    "redux": "^4.0.5",
    "redux-actions": "^2.6.5",
    "redux-observable": "^1.2.0",
    "rxjs": "^6.5.4"
  },
  "devDependencies": {
    "@asuka/di": "^0.3.4",
    "@types/chai": "^4.2.7",
    "@types/enzyme": "^3.10.4",
    "@types/lodash": "^4.14.149",
    "@types/mocha": "^5.2.7",
    "@types/react-dom": "^16.9.4",
    "@types/react-redux": "^7.1.5",
    "@types/react-router": "^5.1.4",
    "@types/react-test-renderer": "^16.9.1",
    "@types/redux-actions": "^2.6.1",
    "@types/shelljs": "^0.8.6",
    "@types/sinon": "^7.5.1",
    "@types/sinon-chai": "^3.2.3",
    "chai": "^4.2.0",
    "codecov": "^3.6.1",
    "connected-react-router": "^6.6.1",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-16": "^1.15.2",
    "history": "^4.10.1",
    "html-webpack-plugin": "^3.2.0",
    "husky": "^4.0.1",
    "istanbul-instrumenter-loader": "^3.0.1",
    "karma": "^4.4.1",
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-coverage-istanbul-reporter": "^2.1.1",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-sinon": "^1.0.5",
    "karma-webpack": "^4.0.2",
    "lint-staged": "^9.5.0",
    "lodash": "^4.17.15",
    "madge": "^3.6.0",
    "mocha": "^7.0.0",
    "prettier": "^1.19.1",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "react-redux": "^7.1.3",
    "react-router": "^5.1.2",
    "react-test-renderer": "^16.12.0",
    "redux": "^4.0.5",
    "redux-actions": "^2.6.5",
    "redux-observable": "1.2.0",
    "rxjs": "^6.5.4",
    "shelljs": "^0.8.3",
    "sinon": "^8.0.4",
    "sinon-chai": "^3.4.0",
    "symbol-observable": "^1.2.0",
    "ts-loader": "^6.2.1",
    "ts-node": "^8.5.4",
    "tslint": "^5.20.1",
    "tslint-config-prettier": "^1.18.0",
    "tslint-eslint-rules": "^5.4.0",
    "typescript": "^3.7.4",
    "webpack": "^4.41.5",
    "webpack-cli": "^3.3.10",
    "webpack-dev-server": "^3.10.1"
  },
  "prettier": {
    "printWidth": 80,
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all",
    "arrowParens": "always",
    "parser": "typescript"
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "tslint -c tslint.json --fix",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}