-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "koa-swagger-validator",
"version": "1.1.0",
"description": "Koa 2 middleware for validating requests/responses via swagger-tools",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uskov-anton/koa-swagger-validator.git"
},
"keywords": [
"koa",
"koa2",
"koajs",
"koa-connect",
"koa-compose",
"swagger",
"swagger2",
"swagger-tools",
"swagger-validator",
"middleware",
"validation",
"validator"
],
"author": {
"name": "Uskov Anton",
"email": "[email protected]",
"url": "https://github.com/uskov-anton"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/uskov-anton/koa-swagger-validator/issues"
},
"homepage": "https://github.com/uskov-anton/koa-swagger-validator#readme",
"dependencies": {
"@types/koa-compose": "^3.2.4",
"@types/swagger-tools": "^0.10.6",
"koa-compose": "^4.1.0",
"koa-connect": "^2.0.1",
"swagger-tools": "^0.10.4"
},
"devDependencies": {
"jest": "^23.6.0",
"koa": "^2.6.2"
}
}