forked from express-validator/express-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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
{
"name": "express-validator",
"description": "Express middleware for the validator module.",
"author": "Christoph Tavan <dev@tavan.de>",
"contributors": [
"Rusty Bailey <rustylbailey@gmail.com>",
"Gustavo Henke <guhenke@gmail.com>"
],
"version": "5.1.0",
"homepage": "https://github.com/ctavan/express-validator",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ctavan/express-validator.git"
},
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "nyc mocha && tsc",
"lint": "eslint lib test check filter",
"travis-build": "npm test && npm run lint",
"report-coverage": "cat coverage/lcov.info | coveralls"
},
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"lodash": "^4.16.0",
"validator": "^9.4.0"
},
"devDependencies": {
"@types/express": "^4.11.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.5.0",
"mocha": "^5.0.0",
"nyc": "^11.1.0",
"typescript": "^2.3.4"
},
"keywords": [
"express",
"validator",
"validation",
"validate",
"sanitize",
"sanitization",
"xss"
]
}