{
  "name": "yafl",
  "version": "1.1.2",
  "description": "Yet another form library for React",
  "main": "dist/index.js",
  "module": "dist/yafl.esm.js",
  "typings": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/stuburger/yafl"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "size": "size-limit",
    "prebuild": "rimraf dist",
    "build": "cross-env NODE_ENV=production tsc -p tsconfig.json && rollup -c && rimraf compiled && cp ./index.js ./dist/index.js",
    "watch": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "prepublishOnly": "yarn build",
    "precommit": "lint-staged"
  },
  "author": "Stuart Bourhill",
  "license": "MIT",
  "dependencies": {
    "invariant": "^2.2.4",
    "object-path-immutable": "^4.1.0",
    "react-copy-to-clipboard": "^5.0.2",
    "react-fast-compare": "^3.2.0",
    "tiny-warning": "^1.0.3",
    "tslib": "^2.0.0"
  },
  "keywords": [
    "yafl",
    "react",
    "form",
    "context",
    "validation"
  ],
  "peerDependencies": {
    "react": ">=16.8.0"
  },
  "jest": {
    "collectCoverage": true,
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "collectCoverageFrom": [
      "src/**/*.{ts,tsx}",
      "!src/**/index.{ts,tsx}"
    ],
    "testRegex": "((\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  },
  "size-limit": [
    {
      "path": "./dist/index.js",
      "limit": "10kb"
    },
    {
      "path": "./dist/yafl.esm.js",
      "limit": "10kb"
    },
    {
      "path": "./dist/yafl.umd.production.min.js",
      "limit": "10kb"
    }
  ],
  "devDependencies": {
    "@testing-library/react": "^10.2.1",
    "@typescript-eslint/eslint-plugin": "^3.2.0",
    "eslint": "^7.2.0",
    "eslint-config-airbnb-typescript": "^8.0.2",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.21.2",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.3",
    "eslint-plugin-react": "^7.19.0",
    "eslint-plugin-react-hooks": "^4.0.4"
  }
}
