{
  "name": "reactotron-redux-saga",
  "version": "4.2.3",
  "description": "A Reactotron plugin for Redux Saga.",
  "author": "Infinite Red",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/infinitered/reactotron-redux-saga/issues"
  },
  "homepage": "https://github.com/infinitered/reactotron-redux-saga",
  "repository": "https://github.com/infinitered/reactotron-redux-saga",
  "files": [
    "dist",
    "LICENSE",
    "README.md",
    "reactotron-redux-saga.d.ts"
  ],
  "main": "dist/index.js",
  "types": "./dist/types/index.d.ts",
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch --notify",
    "format": "prettier --write {**,.}/*.ts",
    "build": "npm-run-all clean tsc compile",
    "build:dev": "npm-run-all clean tsc compile:dev",
    "clean": "trash dist",
    "lint": "eslint src --ext .ts,.tsx",
    "compile": "NODE_ENV=production rollup -c",
    "compile:dev": "NODE_ENV=development rollup -c",
    "tsc": "tsc",
    "ci:test": "yarn test",
    "ci:publish": "yarn semantic-release",
    "semantic-release": "semantic-release"
  },
  "peerDependencies": {
    "@redux-saga/is": "^1.0.1",
    "reactotron-core-client": "^2.5.0",
    "redux": "^4.0.1",
    "redux-saga": "^1.0.1"
  },
  "devDependencies": {
    "@babel/core": "^7.2.2",
    "@babel/preset-env": "^7.3.1",
    "@babel/preset-typescript": "^7.1.0",
    "@redux-saga/is": "^1.0.1",
    "@redux-saga/testing-utils": "^1.0.1",
    "@semantic-release/git": "^7.1.0-beta.3",
    "@types/jest": "^24.0.0",
    "@typescript-eslint/eslint-plugin": "^1.3.0",
    "@typescript-eslint/parser": "^1.3.0",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^24.1.0",
    "eslint": "^5.13.0",
    "eslint-config-prettier": "^4.0.0",
    "eslint-config-standard": "^12.0.0",
    "eslint-plugin-import": "^2.16.0",
    "eslint-plugin-node": "^8.0.1",
    "eslint-plugin-promise": "^4.0.1",
    "eslint-plugin-standard": "^4.0.0",
    "jest": "^24.1.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^1.16.4",
    "reactotron-core-client": "^2.5.0",
    "redux": "^4.0.1",
    "redux-saga": "^1.0.1",
    "rollup": "^1.1.2",
    "rollup-plugin-babel": "^4.3.2",
    "rollup-plugin-babel-minify": "^7.0.0",
    "rollup-plugin-filesize": "^6.0.1",
    "rollup-plugin-node-resolve": "^4.0.0",
    "rollup-plugin-resolve": "^0.0.1-predev.1",
    "semantic-release": "^16.0.0-beta.18",
    "trash-cli": "^1.4.0",
    "ts-jest": "^23.10.5",
    "typescript": "^3.3.3"
  },
  "eslintConfig": {
    "parser": "@typescript-eslint/parser",
    "extends": [
      "plugin:@typescript-eslint/recommended",
      "standard",
      "prettier"
    ],
    "parserOptions": {
      "ecmaFeatures": {
        "jsx": true
      },
      "project": "./tsconfig.json"
    },
    "plugins": [
      "@typescript-eslint"
    ],
    "globals": {
      "__DEV__": false,
      "jasmine": false,
      "beforeAll": false,
      "afterAll": false,
      "beforeEach": false,
      "afterEach": false,
      "test": false,
      "expect": false,
      "describe": false,
      "jest": false,
      "it": false
    },
    "rules": {
      "no-unused-vars": 0,
      "no-undef": 0,
      "space-before-function-paren": 0,
      "@typescript-eslint/indent": 0,
      "@typescript-eslint/explicit-member-accessibility": 0,
      "@typescript-eslint/explicit-function-return-type": 0,
      "@typescript-eslint/no-explicit-any": 0,
      "@typescript-eslint/no-object-literal-type-assertion": 0,
      "@typescript-eslint/no-empty-interface": 0,
      "@typescript-eslint/no-var-requires": 0,
      "@typescript-eslint/member-delimiter-style": 0
    }
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "testMatch": [
      "**/*.test.[tj]s"
    ]
  }
}
