{
  "name": "fast-form-validator",
  "version": "3.0.0",
  "description": "Streamlined form validation library with chainable API",
  "main": "UMD/ffv.min.js",
  "module": "src/index.js",
  "browser": "UMD/ffv.min.js",
  "types": "types/index.d.ts",
  "exports": {
    ".": {
      "import": "./UMD/ffv.min.js",
      "require": "./UMD/ffv.min.js",
      "types": "./types/index.d.ts"
    }
  },
  "files": [
    "UMD/",
    "src/",
    "types/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "build": "webpack --mode production",
    "build:dev": "webpack --mode development",
    "dev": "webpack --mode development --watch",
    "docs": "documentation build src/** -f md > README.md",
    "docs:html": "documentation build src/** -f html -o docs",
    "lint": "eslint src --ext .js",
    "lint:fix": "eslint src --ext .js --fix",
    "format": "prettier --write 'src/**/*.js'",
    "release": "standard-version && git push --follow-tags origin main && npm publish",
    "prepublishOnly": "npm run lint && npm run test && npm run build",
    "size": "size-limit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/clickwithclark/fast-form-validator.git"
  },
  "keywords": [
    "form",
    "validation",
    "validator",
    "input-validation",
    "form-validation",
    "client-side-validation",
    "javascript",
    "browser"
  ],
  "author": "clickwithclark",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/clickwithclark/fast-form-validator/issues"
  },
  "homepage": "https://github.com/clickwithclark/fast-form-validator#readme",
  "devDependencies": {
    "@babel/core": "^7.23.0",
    "@babel/preset-env": "^7.23.0",
    "@size-limit/preset-small-lib": "^10.0.0",
    "@testing-library/dom": "^9.3.0",
    "@testing-library/jest-dom": "^6.1.0",
    "@types/node": "^20.8.0",
    "eslint": "^8.51.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "prettier": "^3.0.3",
    "size-limit": "^10.0.0",
    "standard-version": "^9.5.0",
    "terser-webpack-plugin": "^5.3.9",
    "typescript": "^5.2.2",
    "webpack": "^5.89.0",
    "webpack-cli": "^5.1.4"
  },
  "eslintConfig": {
    "env": {
      "browser": true,
      "es2021": true,
      "node": true
    },
    "extends": "eslint:recommended",
    "parserOptions": {
      "ecmaVersion": "latest",
      "sourceType": "module"
    },
    "rules": {}
  },
  "size-limit": [
    {
      "path": "UMD/ffv.min.js",
      "limit": "5 KB"
    }
  ],
  "engines": {
    "node": ">=14.0.0"
  }
}
