-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "valid-express",
"version": "0.2.4",
"description": "Validate request params in Express apps using Joi module",
"author": "Ehsan Zaery Moghaddam ([email protected])",
"homepage": "https://github.com/moghaddam/valid-express",
"main": "index.js",
"scripts": {
"test": "mocha itests/test_*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/moghaddam/valid-express.git"
},
"bugs": {
"url": "https://github.com/moghaddam/valid-express/issues",
"email": "[email protected]"
},
"keywords": [
"express",
"validate",
"joi",
"middleware",
"validation",
"validator"
],
"author": "Ehsan Zaery Moghaddam <[email protected]>",
"license": "MIT",
"dependencies": {
"joi": "6.9.0",
"lodash": "3.10.1"
},
"devDependencies": {
"body-parser": "1.14.1",
"coveralls": "2.11.4",
"express": "4.13.3",
"mocha": "2.3.3",
"mocha-lcov-reporter": "1.0.0",
"should": "7.1.0",
"supertest": "1.1.0"
}
}