forked from arjun-g/vs-swagger-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
{
"name": "swagger-viewer",
"displayName": "Swagger Viewer",
"description": "Swagger Viewer lets you preview swagger files as you type in Visual Studio Code.",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#4a4a4a",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"version": "1.5.0",
"publisher": "Arjun",
"engines": {
"vscode": "^0.10.10"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:yaml",
"onLanguage:json",
"onLanguage:plaintext"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.previewSwagger",
"title": "Preview Swagger"
}
],
"configuration": {
"type": "object",
"title": "Swagger Viewer configuration",
"properties": {
"swaggerViewer.defaultPort": {
"type": "integer",
"default": 9000,
"description": "Default port in which the preview should be opened."
},
"swaggerViewer.previewInBrowser": {
"type": "boolean",
"default": false,
"description": "Whether to open preview in browser, default: preview inside vscode"
}
}
},
"keybindings": [
{
"command": "extension.previewSwagger",
"key": "shift+alt+p",
"mac": "shift+alt+p",
"when": "editorTextFocus"
}
]
},
"devDependencies": {
"vscode": "^0.11.0"
},
"dependencies": {
"express": "^4.13.4",
"socket.io": "^1.4.5",
"yamljs": "^0.3.0"
},
"bugs": {
"url": "https://github.com/arjun-g/vs-swagger-viewer/issues"
},
"homepage": "https://github.com/arjun-g/vs-swagger-viewer/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/arjun-g/vs-swagger-viewer.git"
}
}