-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "openapi-gui",
"version": "1.2.2",
"description": "GUI / visual editor for creating and editing OpenApi / Swagger definitions",
"main": "openapi-gui.js",
"bin": {
"openapi-gui": "./openapi-gui.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node openapi-gui.js",
"docker": "docker build -t mermade/openapi-gui .",
"publish": "docker push mermade/openapi-gui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mermade/openapi-gui.git"
},
"keywords": [
"openapi",
"openapi3",
"swagger",
"editor",
"gui",
"visual"
],
"author": "Mike Ralphson",
"license": "MIT",
"optionalDependencies": {
"compression": "^1.7.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"shins": "2.6",
"widdershins": "^4.0.1"
},
"dependencies": {
"open": "^8.4.2",
"openapi-webconverter": "^1.3.19",
"tiny-opts-parser": "0.0.3",
"yaml": "^2.2.1"
}
}