forked from express-validator/express-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
55
{
"name": "express-validator",
"description": "Express middleware for the validator module.",
"author": "Christoph Tavan <[email protected]>",
"contributors": [
"Chris O'Hara <[email protected]>",
"@orfaust",
"@zero21xxx",
"Roman Kalyakin <[email protected]>",
"Rusty Bailey <[email protected]>",
"Gustavo Henke <[email protected]>",
"Ayman Nedjmeddine <[email protected]>"
],
"version": "4.2.2",
"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": {
"@types/express": "~4.0.34",
"lodash": "^4.16.0",
"validator": "~8.2.0"
},
"devDependencies": {
"chai": "2.3.0",
"coveralls": "2.11.14",
"eslint": "^4.5.0",
"express": "4.12.3",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"typescript": "^2.3.4"
},
"keywords": [
"express",
"validator",
"validation",
"validate",
"sanitize",
"sanitization",
"xss"
]
}