forked from AndrewKeig/express-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "express-validation",
"version": "1.0.2",
"author": "Andrew Keig <[email protected]>",
"description": "express-validation is a middleware that validates the body, params, query, headers and cookies of a request and returns a response with errors; if any of the configured validation rules fail.",
"homepage": "https://github.com/andrewkeig/express-validation",
"contributors": [
{
"name": "Valerio Coltre",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/andrewkeig/express-validation"
},
"dependencies": {
"lodash": "^4.9.0"
},
"peerDependencies": {
"joi": "*"
},
"devDependencies": {
"body-parser": "^1.14.2",
"cookie-parser": "^1.4.1",
"eslint": "^2.7.0",
"express": "~4.x",
"joi": "^9.0.4",
"mocha": "^2.3.4",
"should": "^9.0.2",
"supertest": "^1.1.0"
},
"license": "MIT",
"scripts": {
"pretest": "eslint lib",
"test": "mocha -R spec -b"
},
"main": "./lib/index",
"keywords": [
"express",
"validation",
"validate"
],
"bugs": {
"url": "https://github.com/andrewkeig/express-validation/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/andrewkeig/express-validation/raw/master/LICENSE"
}
]
}