forked from mimarec/swagger-doc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "swagger-doc-viewer",
"displayName": "swagger-doc-viewer",
"version": "1.0.4",
"description": "Viewer documentation for a OpenAPI Specification (fka The Swagger Specification)",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#424242",
"theme": "dark"
},
"publisher": "mimarec",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.swaggerDocViewer"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.swaggerDocViewer",
"title": "Swagger Doc Viewer"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mimarec/swagger-doc-viewer.git"
},
"keywords": [
"Swagger",
"OpenAPI",
"Preview",
"Documentation",
"SwaggerPreview"
],
"author": "Miguel María Martínez Echeverría",
"license": "MIT",
"bugs": {
"url": "https://github.com/mimarec/swagger-doc-viewer/issues"
},
"homepage": "https://github.com/mimarec/swagger-doc-viewer#readme",
"devDependencies": {
"log-level": "^1.0.0",
"vscode": "^0.11.17"
},
"dependencies": {
"express": "^4.14.0",
"opn": "^4.0.2",
"socket.io": "^1.4.8"
}
}