{ "name": "validator", "description": "String validation and sanitization", "version": "9.4.1", "homepage": "http://github.com/chriso/validator.js", "files": [ "index.js", "lib", "README.md", "LICENCE", "validator.js", "validator.min.js" ], "keywords": [ "validator", "validation", "validate", "sanitization", "sanitize", "sanitisation", "sanitise", "assert" ], "author": "Chris O'Hara ", "main": "index.js", "bugs": { "url": "http://github.com/chriso/validator.js/issues" }, "repository": { "type": "git", "url": "http://github.com/chriso/validator.js.git" }, "devDependencies": { "babel-cli": "^6.24.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-es2015": "^6.24.0", "babel-preset-es2015-rollup": "^3.0.0", "eslint": "^4.0.0", "eslint-config-airbnb-base": "^11.2.0", "eslint-plugin-import": "^2.3.0", "mocha": "^3.1.2", "rollup": "^0.43.0", "rollup-plugin-babel": "^2.7.1", "uglify-js": "^3.0.19" }, "scripts": { "lint": "eslint src test", "lint:fix": "eslint --fix src test", "clean:node": "rm -rf index.js lib", "clean:browser": "rm -rf validator*.js", "clean": "npm run clean:node && npm run clean:browser", "minify": "uglifyjs validator.js -o validator.min.js --compress --mangle --comments /Copyright/", "build:browser": "babel-node build-browser && npm run minify", "build:node": "babel src -d . --presets es2015 --plugins add-module-exports", "build": "npm run build:browser && npm run build:node", "pretest": "npm run lint && npm run build", "test": "mocha --reporter spec" }, "engines": { "node": ">= 0.10" }, "license": "MIT" }