forked from joefitzgerald/go-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
187 lines (187 loc) · 4.59 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "go-plus",
"description": "Makes working with Go in Atom awesome.",
"keywords": [
"go",
"golang",
"autocomplete",
"gofmt",
"gocode",
"format",
"fmt",
"godef",
"goimports",
"gorename",
"goreturns",
"lint",
"vet",
"gometalinter",
"go-debug",
"delve"
],
"version": "4.3.2",
"main": "./lib/main",
"license": "Apache-2.0",
"engines": {
"atom": ">=1.9.9 <2.0.0",
"node": "*"
},
"author": "Joe Fitzgerald <[email protected]> (http://github.com/joefitzgerald)",
"homepage": "https://atom.io/packages/go-plus",
"repository": "https://github.com/joefitzgerald/go-plus",
"bugs": {
"url": "https://github.com/joefitzgerald/go-plus/issues"
},
"dependencies": {
"ansi-to-html": "^0.4.2",
"atom-package-deps": "4.2.0",
"etch": "0.6.3",
"etch-octicon": "^0.0.4",
"lodash": "^4.16.4",
"rimraf": "^2.5.4",
"temp": "^0.8.3"
},
"devDependencies": {
"fs-plus": "^2.9.2",
"standard": "^8.4.0",
"temp": "^0.8.3"
},
"package-deps": [
"go-config",
"go-get",
"gometalinter-linter",
"autocomplete-go",
"navigator-go",
"gorename",
"builder-go",
"go-debug",
"godoc"
],
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"go-config": {
"versions": {
"1.0.0": "consumeGoconfig"
}
},
"go-plus.view": {
"versions": {
"0.1.0": "consumeViewProvider"
}
},
"go-get": {
"versions": {
"2.0.0": "consumeGoget"
}
}
},
"configSchema": {
"panelDisplayMode": {
"title": "Panel Display Mode",
"description": "Control the behavior of the go-plus panel when a new Atom window is opened",
"type": "string",
"default": "open",
"enum": [
"open",
"closed"
],
"order": 1
},
"maxPanelHeight": {
"title": "Maximum Panel Height",
"description": "Prevent the panel from occupying the entire window",
"type": "string",
"default": "50vh",
"order": 2
},
"minPanelHeight": {
"title": "Minimum Panel Height",
"description": "Ensure the panel doesn't disappear when open",
"type": "string",
"default": "10vh",
"order": 3
},
"currentPanelHeight": {
"title": "Current Panel Height",
"description": "The height of the panel (this is changed when you drag the panel to resize it, so the setting is preserved)",
"type": "string",
"default": "15vh",
"order": 3
},
"format": {
"title": "Format",
"type": "object",
"properties": {
"formatOnSave": {
"title": "Run Format Tool On Save",
"description": "Run the configured format tool each time a file is saved",
"type": "boolean",
"default": true,
"order": 1
},
"tool": {
"title": "Format Tool",
"description": "Choose one: goimports, goreturns, or gofmt",
"type": "string",
"default": "goimports",
"enum": [
"goimports",
"goreturns",
"gofmt"
],
"order": 2
}
}
},
"test": {
"title": "Test",
"type": "object",
"properties": {
"runTestsOnSave": {
"title": "Run Tests On Save",
"description": "Run `go test -coverprofile` each time a file is saved",
"type": "boolean",
"default": true,
"order": 1
},
"runTestsWithShortFlag": {
"title": "Run Tests With Short Flag Set",
"description": "Runs `go test` with `-short` flag set",
"type": "boolean",
"default": true,
"order": 2
},
"coverageHighlightMode": {
"title": "Coverage Highlight Mode",
"description": "Control the way that coverage highlighting occurs",
"type": "string",
"default": "uncovered",
"enum": [
"covered-and-uncovered",
"covered",
"uncovered",
"disabled"
],
"order": 3
},
"focusPanelIfTestsFail": {
"title": "Focus The go-plus Panel If Tests Fail",
"description": "If the panel is hidden, or the panel is showing a different tab, the panel will be expanded and the test tab focused when tests fail.",
"type": "boolean",
"default": true,
"order": 4
}
}
}
},
"standard": {
"globals": [
"atom",
"waitsForPromise"
]
}
}