{
  "name": "@reins/hooks",
  "version": "0.19.1",
  "description": "Essential hooks for the React",
  "author": "Maciej Pyrc <maciekpyrc@gmail.com>",
  "homepage": "",
  "license": "Apache-2.0",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "source": "src/index.ts",
  "scripts": {
    "clean": "npx rimraf dist",
    "test": "jest --watchAll --maxWorkers=3",
    "test:pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache --detectOpenHandles --forceExit",
    "start": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
    "build": "yarn clean && tsc -p tsconfig.build.json && tsc-alias",
    "lint": "eslint . --ext .js,.jsx,.tsx,.ts --fix",
    "format": "prettier --write .",
    "typecheck": "tsc --noEmit --emitDeclarationOnly false",
    "tests": "yarn lint-staged",
    "release": "semantic-release --extends ../../release.config.js  -t 'hooks-v${version}' --skip-integrity-check"
  },
  "dependencies": {
    "@reins/types": "*",
    "@reins/utils": "*"
  },
  "devDependencies": {
    "semantic-release": "^22.0.12"
  },
  "peerDependencies": {
    "react": ">= 16.8.0",
    "react-dom": ">= 16.8.0"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "yarn jest"
    ]
  },
  "eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.com/"
  },
  "bugs": {
    "url": "https://github.com/BetterTyped/reins/issues"
  },
  "keywords": [
    "admin"
  ]
}
