-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.55 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
67
68
69
{
"name": "koa-router-joi-validation",
"version": "1.2.0",
"description": "Koa input/output validation middleware for Koa router",
"main": "lib/",
"scripts": {
"dev": "nodemon --exec babel-node src/",
"build": "babel src --out-dir lib --source-maps",
"start": "npm run build && node lib/",
"test": "npm run build && nyc mocha test/ --timeout 10000"
},
"keywords": [
"koa",
"router",
"validator",
"middleware",
"validation",
"input",
"output",
"joi"
],
"author": "Faisal KANOUT",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@hapi/joi": "^17.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/fkanout/koa-router-joi-validation.git"
},
"bugs": {
"url": "https://github.com/fkanout/koa-router-joi-validation/issues"
},
"homepage": "https://github.com/koajs/koa-router-joi-validation",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@koa/router": "^8.0.5",
"axios": "^0.19.0",
"got": "^10.2.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"mocha": "^7.0.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"engines": {
"node": ">=8.x"
}
}