-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 943 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
{
"name": "koa-joi",
"version": "1.0.0",
"description": "Joi validation middleware",
"main": "index.js",
"scripts": {
"coveralls": "coveralls < ./coverage/lcov.info",
"pretest": "eslint .",
"test": "istanbul cover --root . node_modules/mocha/bin/_mocha --"
},
"repository": {
"type": "git",
"url": "https://github.com/pierreinglebert/koa-joi.git"
},
"keywords": [
"koa",
"joi"
],
"author": "Pierre Inglebert <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pierreinglebert/koa-joi/issues"
},
"homepage": "https://github.com/pierreinglebert/koa-joi",
"devDependencies": {
"coveralls": "^2.11.2",
"eslint": "^1.10.1",
"istanbul": "^0.4.2",
"joi": "^7.2.0",
"koa": "^1.1.2",
"koa-bodyparser": "^2.0.1",
"mocha": "*",
"should": "*",
"supertest": "^1.1.0"
},
"peerDependencies": {
"joi": "^7.2.0"
}
}