{
  "name": "@mixer/epic-supervisor",
  "version": "0.1.3",
  "description": "Supervisor tree for react-redux error handling",
  "module": "dist/index.js",
  "main": "dist/cjs/index.js",
  "scripts": {
    "test": "npm run test:unit && npm run test:fmt && npm run test:lint",
    "prepare": "tsc && tsc -p tsconfig.cjs.json",
    "build": "npm run prepare",
    "build:bundle": "webpack",
    "test:lint": "tslint --project tsconfig.json \"{src,test}/**/*.ts\"",
    "test:unit": "mocha --opts mocha.opts",
    "test:cover": "nyc mocha --opts mocha.opts",
    "test:fmt": "prettier --list-different \"src/**/*.{js,json,ts}\" || echo \"Run npm run fmt to fix formatting on these files\"",
    "fmt": "prettier --write \"src/**/*.{json,ts}\" && npm run test:lint -- --fix"
  },
  "author": "Connor Peet <connor@peet.io>",
  "license": "MIT",
  "nyc": {
    "include": [
      "src/**/*.{ts,tsx}"
    ],
    "exclude": [
      "**/*.d.ts",
      "**/*.test.ts"
    ],
    "extension": [
      ".ts",
      ".tsx"
    ],
    "reporter": [
      "cobertura",
      "text-summary",
      "html"
    ],
    "all": true,
    "instrument": true
  },
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.6",
    "@types/sinon": "^7.0.11",
    "chai": "^4.2.0",
    "mocha": "^6.1.3",
    "nyc": "^14.0.0",
    "prettier": "^1.17.0",
    "redux": "^4.0.1",
    "redux-observable": "^1.1.0",
    "sinon": "^7.3.1",
    "ts-loader": "^5.3.3",
    "ts-node": "^8.1.0",
    "tslint": "^5.15.0",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.4.3",
    "webpack": "^4.30.0",
    "webpack-cli": "^3.3.0"
  },
  "prettier": {
    "trailingComma": "all",
    "singleQuote": true,
    "printWidth": 100,
    "tabWidth": 2
  },
  "dependencies": {
    "rxjs": "^6.0.0",
    "tslib": "^1.9.3"
  }
}
