forked from vanwalj/koa-joi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 869 Bytes
/
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
{
"name": "koa-joi-validator",
"version": "4.0.0",
"description": "A simple Joi validator for koa router",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vanwalj/koa-joi-validator.git"
},
"keywords": [
"koa",
"joi",
"body",
"header",
"parser",
"validator"
],
"author": "Jordan Van Walleghem <j.vanwall@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vanwalj/koa-joi-validator/issues"
},
"homepage": "https://github.com/vanwalj/koa-joi-validator#readme",
"dependencies": {
"bluebird": "3.2.2",
"co-body": "4.0.0",
"joi": "7.2.3"
},
"devDependencies": {
"koa": "^1.1.2",
"koa-router": "^5.3.0",
"mocha": "^2.4.5",
"supertest": "^1.1.0"
}
}