-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 930 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
{
"name": "koajv",
"version": "2.1.0",
"description": "Koa middleware for AJV validation on query string, body payload and params",
"main": "index.js",
"scripts": {
"posttest": "eslint ./index.js ./tests",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text-summary --exclude tests mocha ./tests/index.js --reporter=spec",
"watch": "watch 'npm test' . tests --wait 5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frichti/koajv.git"
},
"keywords": [
"koa",
"middleware",
"validation",
"ajv"
],
"author": "SachaCR",
"license": "MIT",
"dependencies": {
"ajv": "^6.4.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.0.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"supertest": "^3.0.0",
"watch": "^1.0.2"
}
}