forked from koajs/joi-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "koa-joi-router",
"version": "3.0.0",
"description": "Configurable, input validated routing for koa.",
"main": "joi-router.js",
"keywords": ["joi","koa","router","validate","validator","validation"],
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= 0.11.4"
},
"author": "Aaron Heckmann <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/koajs/joi-router.git"
},
"bugs": {
"url": "https://github.com/koajs/joi-router/issues"
},
"homepage": "https://github.com/koajs/joi-router",
"dependencies": {
"co-body": "4.0.0",
"co-busboy": "1.3.0",
"debug": "2.2.0",
"delegates": "0.1.0",
"flatten": "0.0.1",
"is-gen-fn": "0.0.1",
"joi": "6.6.1",
"koa-router": "5.2.3",
"methods": "1.1.1",
"sliced": "1.0.1"
},
"devDependencies": {
"eslint": "^1.1.0",
"eslint-config-pebble": "^1.2.0",
"eslint-plugin-standard": "^1.1.0",
"istanbul-harmony": "^0.3.0",
"koa": "^1.0.0",
"mocha": "^1.21.4",
"co-mocha": "^1.1.0",
"co-supertest": "^0.0.8",
"supertest": "^0.15.0"
},
"eslintConfig": {
"extends": [
"pebble"
]
}
}