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
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"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>"
],
"version": "2.20.3",
"homepage": "https://github.com/ctavan/express-validator",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ctavan/express-validator.git"
},
"main": "./index.js",
"scripts": {
"test": "mocha",
"jshint": "jshint ./test ./lib",
"jscs": "jscs ./test ./lib",
"travis-build": "npm test && npm run jshint && npm run jscs",
"changelog": "github-changes -o ctavan -r express-validator -a -m YYYY/MM/DD --no-merges"
},
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"bluebird": "3.3.x",
"lodash": "4.6.x",
"validator": "4.9.x"
},
"devDependencies": {
"body-parser": "1.12.3",
"chai": "2.3.0",
"express": "4.12.3",
"github-changes": "1.0.2",
"jscs": "1.13.1",
"jshint": "2.7.0",
"mocha": "2.2.4",
"supertest": "0.15.0"
},
"keywords": [
"express",
"validator",
"validation",
"validate",
"sanitize",
"sanitization",
"xss"
]
}