forked from 766b/vscode-go-outliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.09 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "go-outliner-simplify",
"displayName": "Go Outliner Simplified Version",
"description": "Go code outline explorer, forked from 766b/vscode-go-outliner ; Changes include: 1. Added interface entries, 2. Only show exportable entries",
"version": "0.1.28",
"publisher": "rclt2m",
"icon": "resources/icons/vertical-alignment-svgrepo-com.png",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:go",
"workspaceContains:**/*.go"
],
"main": "./out/extension",
"repository": {
"type": "git",
"url": "https://github.com/rclt2m/vscode-go-outliner.git"
},
"contributes": {
"configuration": {
"type": "object",
"title": "Go Outliner Configuration",
"properties": {
"goOutliner.enableDebugChannel": {
"type": "boolean",
"default": false,
"description": "Display debug information into output channel"
},
"goOutliner.extendExplorerTab": {
"type": "boolean",
"default": false,
"description": "Extend default Explorer tab with additional section containing Go symbols"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "go-outliner-simplify",
"title": "Go Outliner",
"icon": "resources/icons/align-left-line-svgrepo-com.svg"
}
]
},
"views": {
"go-outliner-simplify": [
{
"id": "outlinerExplorerView",
"name": "Explorer"
},
{
"id": "outlinerTestsView",
"name": "Tests",
"when": "showGoOutlinerTestsView"
},
{
"id": "outlinerBenchmarksView",
"name": "Benchmarks",
"when": "showGoOutlinerBenchmarksView"
}
],
"explorer": [
{
"id": "outlinerExplorerExtensionView",
"name": "Go Outliner",
"when": "enableExplorerExtension && showGoOutlinerMainView"
}
]
},
"commands": [
{
"command": "goOutliner.TestAll",
"title": "Test All"
},
{
"command": "goOutliner.Test",
"title": "Test"
},
{
"command": "goOutliner.BenchmarkAll",
"title": "Benchmark All"
},
{
"command": "goOutliner.Benchmark",
"title": "Benchmark"
}
],
"menus": {
"view/item/context": [
{
"command": "goOutliner.Test",
"when": "view == outlinerTestsView && viewItem == symbol"
},
{
"command": "goOutliner.TestAll",
"when": "view == outlinerTestsView"
},
{
"command": "goOutliner.Benchmark",
"when": "view == outlinerBenchmarksView && viewItem == symbol"
},
{
"command": "goOutliner.BenchmarkAll",
"when": "view == outlinerBenchmarksView"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.14",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
}
}