{
  "_args": [
    [
      "react-hook-form@6.8.6",
      "/var/www/html/frontend"
    ]
  ],
  "_from": "react-hook-form@6.8.6",
  "_id": "react-hook-form@6.8.6",
  "_inBundle": false,
  "_integrity": "sha512-ZCp7Y+IrlsQma08uy3H6l/qF7dZWqAWMkZ4vVbHVfh1EHjsO1SwU7aYVHgJSQpriHtEdGszCW8NS/aujGsLk0g==",
  "_location": "/react-hook-form",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "react-hook-form@6.8.6",
    "name": "react-hook-form",
    "escapedName": "react-hook-form",
    "rawSpec": "6.8.6",
    "saveSpec": null,
    "fetchSpec": "6.8.6"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-6.8.6.tgz",
  "_spec": "6.8.6",
  "_where": "/var/www/html/frontend",
  "author": {
    "email": "bluebill1049@hotmail.com"
  },
  "bugs": {
    "url": "https://github.com/react-hook-form/react-hook-form/issues"
  },
  "bundlesize": [
    {
      "path": "./dist/index.cjs.production.min.js",
      "maxSize": "9.5 kB"
    }
  ],
  "description": "Performant, flexible and extensible forms library for React Hooks",
  "devDependencies": {
    "@babel/core": "^7.11.4",
    "@babel/plugin-transform-runtime": "^7.10.4",
    "@changesets/changelog-github": "^0.2.6",
    "@changesets/cli": "^2.9.2",
    "@rollup/plugin-commonjs": "^15.0.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@rollup/plugin-replace": "^2.3.3",
    "@testing-library/jest-dom": "^5.11.0",
    "@testing-library/react": "^10.4.6",
    "@testing-library/react-hooks": "^3.3.0",
    "@testing-library/react-native": "^5.0.3",
    "@types/jest": "^26.0.4",
    "@types/react": "^16.9.43",
    "@types/react-dom": "^16.9.8",
    "@types/react-native": "^0.63.17",
    "@types/react-test-renderer": "^16.9.2",
    "@typescript-eslint/eslint-plugin": "^4.1.0",
    "@typescript-eslint/parser": "^4.1.0",
    "babel-jest": "^26.1.0",
    "bundlesize": "^0.18.0",
    "copyfiles": "^2.3.0",
    "core-js": "^3.6.5",
    "coveralls": "^3.1.0",
    "cypress": "5.1.0",
    "eslint": "^7.4.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-cypress": "^2.11.1",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-react": "^7.20.3",
    "eslint-plugin-react-hooks": "^4.0.8",
    "husky": "^4.3.0",
    "jest": "^26.4.1",
    "jest-performance-testing": "^1.0.0",
    "lint-staged": "^10.2.11",
    "metro-react-native-babel-preset": "^0.63.0",
    "prettier": "^2.0.5",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-native": "^0.62.2",
    "react-performance-testing": "^1.2.0",
    "react-test-renderer": "^16.13.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.26.11",
    "rollup-plugin-peer-deps-external": "^2.2.3",
    "rollup-plugin-sourcemaps": "^0.6.2",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.27.1",
    "ts-jest": "^26.1.2",
    "typescript": "^4.0.2"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://www.react-hook-form.com",
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint:types && lint-staged"
    }
  },
  "jsdelivr": "dist/index.umd.production.min.js",
  "jsnext:main": "dist/index.esm.js",
  "keywords": [
    "react",
    "hooks",
    "form",
    "forms",
    "form-validation",
    "validation",
    "typescript",
    "react-hooks"
  ],
  "license": "MIT",
  "lint-staged": {
    "*.{js,ts,tsx}": [
      "npm run lint:fix"
    ],
    "*.{md,json,yml}": [
      "prettier --write"
    ]
  },
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "name": "react-hook-form",
  "peerDependencies": {
    "react": "^16.8.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/react-hook-form/react-hook-form.git"
  },
  "scripts": {
    "build": "node rollup/writeCjsEntryFile.js && npm run build:modern && npm run build:ie11 && npm run cp:dts",
    "build:ie11": "rollup -c ./rollup/rollup.ie11.config.js",
    "build:modern": "rollup -c ./rollup/rollup.config.js",
    "bundlesize": "npm run build:modern && bundlesize",
    "changeset": "changeset",
    "clean": "rimraf dist",
    "coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
    "cp:dts": "copyfiles -f ./src/**/*.d.ts dist",
    "cypress": "cypress run",
    "cypress:open": "cypress open",
    "lint": "eslint '**/*.{js,ts,tsx}'",
    "lint:fix": "npm run lint -- --fix",
    "lint:types": "tsc --noEmit",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run lint && npm run lint:types && npm test && npm run build",
    "release": "changeset publish",
    "start:app": "npm run build:modern && yarn link && yarn --cwd node_modules/react link && yarn --cwd ./app link react react-hook-form && yarn --cwd ./app && yarn --cwd ./app run start",
    "test": "jest --runInBand",
    "test:coverage": "jest --runInBand --coverage",
    "test:native": "TEST_ENV=native jest --runInBand",
    "test:server": "TEST_ENV=server jest --runInBand",
    "test:watch": "npm run test:coverage -- --watchAll",
    "test:web": "TEST_ENV=web jest --runInBand"
  },
  "sideEffects": true,
  "source": "src/index.ts",
  "types": "dist/index.d.ts",
  "umd:main": "dist/index.umd.production.min.js",
  "unpkg": "dist/index.umd.production.min.js",
  "version": "6.8.6"
}
