{
  "name": "react-api-data",
  "version": "1.2.0",
  "description": "Fetch and normalize data from api",
  "main": "lib/index.js",
  "scripts": {
    "test": "jest",
    "test-watch": "jest --watch",
    "build": "npm run test && npm run build:clean && npm run build:lib && npm run build:flow",
    "build:clean": "rimraf lib/",
    "build:lib": "npx tsc",
    "build:flow": "flow examples && flow-copy-source flow lib",
    "build:docs": "documentation build lib/index.js -f md > api.md",
    "precommit": "tslint --project .",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/oberonamsterdam/react-api-data.git"
  },
  "keywords": [
    "redux",
    "json",
    "fetch",
    "normalize",
    "typeScript support"
  ],
  "author": "Richard van Willegen",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/oberonamsterdam/react-api-data/issues"
  },
  "homepage": "https://github.com/oberonamsterdam/react-api-data#readme",
  "devDependencies": {
    "@testing-library/react-hooks": "^3.2.1",
    "@types/jest": "^26.0.13",
    "@types/node": "^12.11.7",
    "@types/react": "^16.8.17",
    "@types/react-redux": "^7.1.5",
    "@types/redux-mock-store": "^1.0.0",
    "@types/shallowequal": "^0.2.3",
    "flow-bin": "^0.87.0",
    "flow-copy-source": "^2.0.9",
    "husky": "^1.0.1",
    "jest": "^26.4.2",
    "normalizr": "^3.2.4",
    "oberon-prettier-config": "^1.0.0",
    "prettier": "^1.19.1",
    "react": "^16.9.0",
    "react-dom": "^16.9.0",
    "react-redux": "7.1.3",
    "react-test-renderer": "^16.12.0",
    "redux": "^4.0.1",
    "redux-mock-store": "^1.5.3",
    "redux-thunk": "^2.3.0",
    "ts-jest": "^26.3.0",
    "tslint": "^5.10.0",
    "tslint-config-oberon": "^1.0.4",
    "typescript": "^4.0.2"
  },
  "dependencies": {
    "hoist-non-react-statics": "^3.3.1",
    "normalizr": "^3.2.4",
    "query-string": "^6.11.1",
    "shallowequal": "^1.0.2"
  },
  "PeerDependencies": {
    "normalizr": "^3.0.0",
    "redux-thunk": "^2.0.0",
    "react": "^16.9.0",
    "react-redux": "7.1.3"
  },
  "jest": {
    "automock": false,
    "globals": {
      "ts-jest": {
        "diagnostics": true
      }
    },
    "coverageDirectory": "./coverage/",
    "collectCoverage": true,
    "roots": [
      "<rootDir>/src"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
