-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.84 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
70
71
72
73
74
{
"name": "swagger-generator-koa",
"title": "swagger-generator-koa",
"version": "2.0.0",
"description": "Generate automatic swagger using joi validation.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --project \"./tsconfig.json\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:watch": "tsc --watch",
"prepublish": "tsc"
},
"author": {
"name": "systango-technologies",
"email": "engineering@systango.com"
},
"homepage": "https://github.com/SystangoTechnologies/swagger-generator-koa/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/SystangoTechnologies/swagger-generator-koa"
},
"keywords": [
"swagger",
"koa",
"ui",
"json",
"joi",
"auto",
"automatic",
"documentation",
"openapi"
],
"license": "MIT",
"maintainers": [
{
"name": "systango-technologies",
"email": "engineering@systango.com"
}
],
"dependencies": {
"@hapi/joi": "^17.1.0",
"@types/hapi__joi": "^16.0.11",
"@types/joi": "^14.3.3",
"@types/koa-convert": "^1.2.2",
"@types/koa-mount": "^4.0.0",
"joi": "^14.3.1",
"joi-to-swagger": "^4.0.0",
"koa-convert": "^1.2.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"swagger-spec-express": "^2.0.23",
"swagger-ui-koa": "0.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^12.7.2",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/responsesEnum.js",
"dist/responsesEnum.d.ts",
"dist/validation/validate.d.ts",
"dist/validation/validate.js",
"dist/validation/validation-error.d.ts",
"dist/validation/validation-error.js",
"README.md"
]
}