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
60 lines (60 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "express-validator",
"description": "Express middleware for the validator module.",
"author": "Christoph Tavan <dev@tavan.de>",
"contributors": [
"Chris O'Hara <cohara87@gmail.com>",
"@orfaust",
"@zero21xxx",
"Roman Kalyakin <roman@kalyakin.com>",
"Rusty Bailey <rustylbailey@gmail.com>",
"Gustavo Henke <guhenke@gmail.com>",
"Ayman Nedjmeddine <theycallmethedr@gmail.com>"
],
"version": "3.1.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",
"travis-build": "npm test && npm run lint",
"report-coverage": "cat coverage/lcov.info | coveralls"
},
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"bluebird": "^3.4.0",
"lodash": "^4.16.0",
"validator": "~6.2.0"
},
"devDependencies": {
"@types/bluebird": "~3.0.36",
"@types/express": "~4.0.34",
"body-parser": "1.12.3",
"chai": "2.3.0",
"cookie-parser": "1.4.1",
"coveralls": "2.11.14",
"eslint": "^3.13.1",
"express": "4.12.3",
"mocha": "2.2.4",
"nyc": "8.4.0",
"supertest": "0.15.0",
"typescript": "~2.0.10"
},
"keywords": [
"express",
"validator",
"validation",
"validate",
"sanitize",
"sanitization",
"xss"
]
}