{
  "name": "fastest-validator-modified-test",
  "version": "0.8.18",
  "description": "The fastest JS validator library for NodeJS",
  "main": "dist/index.js",
  "browser": "dist/index.min.js",
  "scripts": {
    "bench": "node benchmark/index.js",
    "build": "rollup -c",
    "prepublish": "npm run build",
    "dev": "nodemon examples/index.js",
    "ci": "jest --watch",
    "test": "jest --coverage",
    "lint": "eslint --ext=.js lib test rollup.config.js",
    "lint:fix": "eslint --fix --ext=.js lib test rollup.config.js",
    "deps": "npm-check -u",
    "coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/icebob/fastest-validator.git"
  },
  "keywords": [
    "validation",
    "validators",
    "validate",
    "schema"
  ],
  "files": [
    "dist",
    "examples",
    "lib",
    "index.js",
    "index.d.ts"
  ],
  "author": "Icebob",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/icebob/fastest-validator/issues"
  },
  "homepage": "https://github.com/icebob/fastest-validator#readme",
  "devDependencies": {
    "benchmarkify": "^2.1.2",
    "coveralls": "^3.0.6",
    "eslint": "^6.5.0",
    "jest": "^24.9.0",
    "jest-cli": "^24.9.0",
    "npm-check": "^5.9.0",
    "rollup": "^1.22.0",
    "rollup-plugin-buble": "^0.19.8",
    "rollup-plugin-closure-compiler-js": "^1.0.6",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-uglify-es": "^0.0.1"
  },
  "jest": {
    "coverageDirectory": "../coverage",
    "testEnvironment": "node",
    "rootDir": "./lib",
    "roots": [
      "../test"
    ]
  }
}
