UNPKG

1.51 kBJSONView Raw
1{
2 "name": "express-validator",
3 "description": "Express middleware for the validator module.",
4 "author": "Christoph Tavan <dev@tavan.de>",
5 "contributors": [
6 "Rusty Bailey <rustylbailey@gmail.com>",
7 "Gustavo Henke <guhenke@gmail.com>"
8 ],
9 "version": "5.3.1",
10 "homepage": "https://express-validator.github.io",
11 "license": "MIT",
12 "repository": {
13 "type": "git",
14 "url": "git://github.com/express-validator/express-validator.git"
15 },
16 "main": "./index.js",
17 "types": "./index.d.ts",
18 "scripts": {
19 "docs:build": "npm --prefix ./website run build",
20 "docs:publish": "USE_SSH=true CURRENT_BRANCH=master npm --prefix ./website run publish-gh-pages",
21 "docs:start": "npm --prefix ./website start",
22 "docs:version": "npm --prefix ./website run version",
23 "test": "nyc mocha && tsc",
24 "lint": "eslint lib test check filter",
25 "report-coverage": "cat coverage/lcov.info | coveralls",
26 "version": "npm run docs:version -- $npm_package_version && git add -A website"
27 },
28 "engines": {
29 "node": ">= 6.0.0"
30 },
31 "dependencies": {
32 "lodash": "^4.17.10",
33 "validator": "^10.4.0"
34 },
35 "devDependencies": {
36 "@types/express": "^4.11.1",
37 "chai": "^4.1.2",
38 "coveralls": "^3.0.0",
39 "docusaurus": "^1.5.1",
40 "eslint": "^4.19.1",
41 "mocha": "^5.1.1",
42 "nyc": "^13.0.1",
43 "typescript": "^2.8.3"
44 },
45 "keywords": [
46 "express",
47 "validator",
48 "validation",
49 "validate",
50 "sanitize",
51 "sanitization",
52 "xss"
53 ]
54}