{
  "name": "usetheform",
  "version": "4.0.0",
  "description": "React library for composing declarative forms in React and managing their state.",
  "main": "./build/index.js",
  "module": "./build/es/index.js",
  "types": "./build/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/iusehooks/usetheform.git"
  },
  "homepage": "https://iusehooks.github.io/usetheform",
  "scripts": {
    "build": "yarn run clean && node ./build_config/build.js",
    "build:dev": "yarn run clean && node ./build_config/dev.js --",
    "clean": "rimraf build coverage dev",
    "lint": "eslint --ext .jsx --ext .js src __tests__ --fix",
    "pretest": "yarn run lint",
    "test": "cross-env NODE_ENV=test jest -u",
    "test:watch": "yarn run test -- --watch",
    "test:cov": "yarn test -- --coverage",
    "coveralls": "yarn run test:cov && cat ./coverage/lcov.info | coveralls"
  },
  "author": "Antonio Pangallo (https://github.com/antoniopangallo)",
  "files": [
    "build/index.js",
    "build/index.d.ts",
    "build/index.es.js",
    "build/es",
    "build/umd"
  ],
  "keywords": [
    "usetheform",
    "form",
    "state",
    "react form",
    "react-hooks",
    "hooks"
  ],
  "license": "MIT",
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.12.10",
    "@babel/core": "^7.12.10",
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/preset-env": "^7.12.11",
    "@babel/preset-react": "^7.12.10",
    "@rollup/plugin-babel": "^5.2.2",
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-node-resolve": "^11.0.1",
    "@rollup/plugin-replace": "^2.3.4",
    "@testing-library/dom": "^10.4.0",
    "@testing-library/react": "^16.3.0",
    "@testing-library/user-event": "^14.6.1",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^10.1.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "jsdom": "^26.1.0",
    "react": "18.2.0",
    "react-dom": "18.2.0",
    "rollup": "^2.35.1",
    "rollup-plugin-bundle-size": "^1.0.3",
    "rollup-plugin-copy": "^3.3.0",
    "rollup-plugin-terser": "^7.0.2"
  },
  "jest": {
    "testEnvironment": "jsdom",
    "testRegex": "(/__tests__/.*\\.spec\\.js)$",
    "collectCoverageFrom": [
      "src/**/{!(index),}.js"
    ]
  }
}
