forked from express-validator/express-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
56
57
58
59
60
61
62
{
"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": "3.1.1",
"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",
"jshint": "jshint ./test ./lib",
"jscs": "jscs ./test ./lib",
"travis-build": "npm test && npm run jshint && npm run jscs",
"report-coverage": "cat coverage/lcov.info | coveralls"
},
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"@types/bluebird": "~3.0.36",
"@types/express": "~4.0.34",
"bluebird": "^3.4.0",
"lodash": "^4.16.0",
"validator": "~6.2.0"
},
"devDependencies": {
"body-parser": "1.12.3",
"cookie-parser": "1.4.1",
"chai": "2.3.0",
"coveralls": "2.11.14",
"express": "4.12.3",
"jscs": "1.13.1",
"jshint": "2.7.0",
"mocha": "2.2.4",
"nyc": "8.4.0",
"supertest": "0.15.0",
"typescript": "~2.0.10"
},
"keywords": [
"express",
"validator",
"validation",
"validate",
"sanitize",
"sanitization",
"xss"
]
}