UNPKG

1.96 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": "6.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": "./src/index.js",
17 "types": "./src/index.d.ts",
18 "files": [
19 "docs",
20 "src",
21 "check",
22 "filter",
23 "!*.spec.ts",
24 "!*.ts",
25 "*.d.ts"
26 ],
27 "scripts": {
28 "clean": "git clean -Xf src check filter",
29 "docs:build": "npm --prefix ./website run build",
30 "docs:publish": "USE_SSH=true CURRENT_BRANCH=master npm --prefix ./website run publish-gh-pages",
31 "docs:start": "npm --prefix ./website start",
32 "docs:version": "npm --prefix ./website run version",
33 "prepublishOnly": "tsc",
34 "test": "jest",
35 "lint": "eslint --ignore-path .gitignore 'src/**/*.ts'",
36 "report-coverage": "cat coverage/lcov.info | coveralls",
37 "version": "npm run docs:version -- $npm_package_version && git add -A website"
38 },
39 "engines": {
40 "node": ">= 8.0.0"
41 },
42 "dependencies": {
43 "lodash": "^4.17.15",
44 "validator": "^11.1.0"
45 },
46 "devDependencies": {
47 "@types/jest": "^24.0.15",
48 "@types/lodash": "^4.14.136",
49 "@typescript-eslint/eslint-plugin": "^1.13.0",
50 "@typescript-eslint/parser": "^1.13.0",
51 "coveralls": "^3.0.5",
52 "docusaurus": "^1.12.0",
53 "eslint": "^5.16.0",
54 "eslint-config-prettier": "^4.3.0",
55 "eslint-plugin-import": "^2.18.2",
56 "eslint-plugin-prettier": "^3.1.0",
57 "jest": "^24.8.0",
58 "prettier": "^1.18.2",
59 "ts-jest": "^24.0.2",
60 "typescript": "^3.5.3"
61 },
62 "keywords": [
63 "express",
64 "validator",
65 "validation",
66 "validate",
67 "sanitize",
68 "sanitization",
69 "xss"
70 ]
71}