forked from koajs/joi-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "koa-joi-router",
"version": "6.0.2",
"description": "Configurable, input validated routing for koa.",
"main": "joi-router.js",
"keywords": [
"joi",
"koa",
"router",
"validate",
"validator",
"validation"
],
"scripts": {
"test": "npm run test-cov && npm run lint",
"lint": "NODE_ENV=test eslint ./*.js",
"lint-fix": "NODE_ENV=test eslint ./*.js --fix",
"test-cov": "NODE_ENV=test nyc mocha -- --reporter spec --bail",
"open-cov": "open coverage/lcov-report/index.html",
"test-only": "NODE_ENV=test mocha --reporter spec --bail"
},
"engines": {
"node": ">= 7.6.0"
},
"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": {
"joi": "^17.2.1",
"await-busboy": "1.0.3",
"clone": "2.1.2",
"co-body": "6.0.0",
"debug": "4.1.1",
"delegates": "1.0.0",
"flatten": "1.0.3",
"is-gen-fn": "0.0.1",
"@koa/router": "8.0.2",
"methods": "1.1.2",
"sliced": "1.0.1"
},
"devDependencies": {
"eslint": "^6.7.2",
"koa": "^2.11.0",
"mocha": "^6.2.2",
"nyc": "^14.0.0",
"supertest": "^4"
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true
}
}
}