{
  "name": "redux-entity",
  "version": "8.0.20",
  "description": "A predictable approach to managing domain entities in Redux.",
  "main": "./lib/index.js",
  "typings": "./index.d.ts",
  "scripts": {
    "build": "npm run clean && npm run compile",
    "compile": "tsc",
    "test": "jest --coverage",
    "coveralls": "jest --coverage && coveralls < coverage/lcov.info",
    "test:watch": "jest --coverage --watchAll",
    "clean": "rm -rf ./lib",
    "example": "node example.js"
  },
  "files": [
    "/lib", "index.d.ts"
  ],
  "engines": {
    "node": ">= 10.0.0",
    "npm": ">= 6.0.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "browserslist": [
    "last 2 versions",
    "ie 9-11"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mikechabot/redux-entity.git"
  },
  "keywords": [
    "redux",
    "redux-thunk",
    "asynchronous state management",
    "state management",
    "react state"
  ],
  "author": "Mike Chabot",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mikechabot/redux-entity/issues"
  },
  "homepage": "https://github.com/mikechabot/redux-entity#readme",
  "devDependencies": {
    "@types/jest": "^26.0.4",
    "@types/redux-mock-store": "^1.0.2",
    "@typescript-eslint/eslint-plugin": "^3.6.0",
    "@typescript-eslint/parser": "^3.6.0",
    "coveralls": "^3.1.0",
    "eslint": "^7.4.0",
    "eslint-config-standard": "^14.1.1",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "husky": "^4.2.5",
    "jest": "^26.1.0",
    "prettier": "^2.0.5",
    "pretty-quick": "^2.0.1",
    "redux-mock-store": "^1.5.4",
    "ts-jest": "^26.1.1",
    "typescript": "^3.9.6"
  },
  "dependencies": {
    "redux-thunk": "^2.3.0",
    "redux": "^4.0.5"
  }
}
