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