forked from koajs/joi-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "@janzal/koa-joi-router",
"version": "8.4.0",
"description": "Configurable, input validated routing for koa.",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"joi",
"koa",
"router",
"validate",
"validator",
"validation"
],
"scripts": {
"prepublish": "npm run build; npm test",
"build": "tsc",
"test": "npm run build && npm run test-cov && npm run prettier",
"prettier": "prettier --write *.ts",
"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": ">= 10.0.0"
},
"author": "Jan Zaloudek <[email protected]>, Aaron Heckmann <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smartlook/joi-router.git"
},
"bugs": {
"url": "https://github.com/smartlook/joi-router/issues"
},
"homepage": "https://github.com/smartlook/joi-router",
"dependencies": {
"@koa/router": "^9.0.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",
"methods": "1.1.2",
"prettier": "^2.0.5",
"sliced": "1.0.1"
},
"devDependencies": {
"@hapi/joi": "^16.1.7",
"@types/co-body": "^5.1.0",
"@types/debug": "^4.1.5",
"@types/koa": "^2.11.3",
"@types/koa__router": "^8.0.2",
"koa": "^2.12.0",
"mocha": "^6.2.3",
"nyc": "^14.0.0",
"supertest": "^4"
}
}