-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 853 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 853 Bytes
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
{
"name": "validation-middleware",
"version": "1.0.14",
"description": "Basic request middleware to sanitize and validate parameters, useful for express",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha ./test"
},
"author": {
"name": "Alejandro Rivera",
"email": "seeealejandro@gmail.com"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"mongoid": "0.0.1",
"standard-http-error": "^2.0.0",
"string-template": "^1.0.0",
"validator": "^7.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alejinho/validation-middleware"
},
"keywords": [
"express-middleware",
"validation",
"asynchronous",
"validator",
"sanitizer"
]
}