-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "swagger-combine-ui",
"version": "0.1.3",
"description": "Combines multiple Swagger schemas into one site",
"main": "index.js",
"scripts": {
"prestart": "cp -f index.html node_modules/swagger-ui-dist/index.html",
"start": "node index.js",
"dev": "npm run prestart; $(npm bin)/nodemon -e js,json,yaml index.js",
"lint": "$(npm bin)/eslint .",
"test": "npm run lint; npm run unit",
"unit": "$(npm bin)/mocha --reporter spec test/spec/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swaggerql/swagger-combine-ui.git"
},
"author": {
"name": "Pavlo Bashynskyi",
"web": "https://github.com/levonet"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/swaggerql/swagger-combine-ui/issues"
},
"homepage": "https://github.com/swaggerql/swagger-combine-ui#readme",
"keywords": [
"swagger",
"swagger2",
"swagger3",
"swagger-ui",
"combine",
"merge",
"openapi",
"openapi3",
"open-api",
"documentation"
],
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.1",
"@koa/router": "^8.0.8",
"api-spec-converter": "^2.11.0",
"koa": "^2.11.0",
"koa-static": "^5.0.0",
"swagger-combine": "^1.0.0",
"swagger-ui-dist": "^3.25.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.2",
"sinon": "^9.0.1"
},
"files": [
"lib/*",
"index.*",
"CHANGELOG.md",
"LICENSE",
"README.md",
"swagger.yaml"
]
}