{
  "name": "rematch-core",
  "version": "0.6.0",
  "description": "A Redux Framework",
  "keywords": [
    "@rematch",
    "rematch",
    "redux",
    "state management",
    "javascript"
  ],
  "homepage": "https://github.com/rematch/rematch#readme",
  "bugs": {
    "url": "https://github.com/rematch/rematch/issues"
  },
  "license": "ISC",
  "authors": [
    "Blair Bodnar <blairbodnar@gmail.com> (https://github.com/blairbodnar)",
    "Shawn McKay <shawn.j.mckay@gmail.com> (https://github.com/shmck)"
  ],
  "files": [
    "dist",
    "typings/rematch/index.d.ts"
  ],
  "main": "dist/cjs",
  "module": "dist/esm/rematch.prod.min.js",
  "browser": "dist/umd/rematch.prod.min.js",
  "types": "typings/rematch",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rematch/rematch.git"
  },
  "scripts": {
    "build": "cross-env rimraf build dist && tsc && rollup -c && node ./scripts/bundles",
    "build:all": "bash ./scripts/build.sh",
    "dev": "tsc --watch src",
    "install:all": "tsc && bash ./scripts/setup_plugins.sh",
    "lint": "eslint ./src",
    "test": "jest"
  },
  "dependencies": {
    "redux": "^3.7.2"
  },
  "devDependencies": {
    "@types/jest": "^22.2.2",
    "@types/node": "^9.6.0",
    "coveralls": "^3.0.0",
    "cross-env": "^5.1.4",
    "gitbook-plugin-edit-link": "^2.0.2",
    "gitbook-plugin-github": "^3.0.0",
    "gitbook-plugin-prism": "^2.3.0",
    "jest": "^22.4.3",
    "redux-persist": "^5.9.1",
    "reselect": "^3.0.1",
    "rimraf": "^2.6.2",
    "rollup": "^0.57.1",
    "rollup-plugin-commonjs": "^9.1.0",
    "rollup-plugin-node-resolve": "^3.3.0",
    "rollup-plugin-replace": "^2.0.0",
    "rollup-plugin-uglify": "^3.0.0",
    "ts-jest": "^22.4.2",
    "tslint": "^5.9.1",
    "typescript": "^2.8.1",
    "uglify-es": "^3.3.10"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "globals": {
      "NODE_ENV": "test"
    },
    "collectCoverage": true,
    "coverageDirectory": "coverage/",
    "coverageThreshold": {
      "global": {
        "branches": 50,
        "functions": 50,
        "lines": 50,
        "statements": 50
      }
    },
    "coveragePathIgnorePatterns": [
      "/_book/",
      "/node_modules/",
      "/plugins/react-navigation/",
      "/dist",
      ".mock.js"
    ],
    "testPathIgnorePatterns": [
      "/_book/",
      "/lib/",
      "plugins/react-navigation/examples"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json"
    ]
  }
}
