forked from flow/flow-for-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
260 lines (260 loc) · 7.44 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
{
"name": "flow-for-vscode",
"version": "1.2.0",
"publisher": "flowtype",
"description": "Flow support for VS Code",
"displayName": "Flow Language Support",
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"private": true,
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"workspaceContains:**/.flowconfig"
],
"main": "./build/index.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Flow Configurations",
"properties": {
"flow.enabled": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Is flow enabled"
},
"flow.useNPMPackagedFlow": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Support using flow through your node_modules folder, WARNING: Checking this box is a security risk. When you open a project we will immediately run code contained within it."
},
"flow.pathToFlow": {
"scope": "resource",
"type": "string",
"default": "flow",
"description": "Absolute path to flow binary. Special var ${workspaceFolder} or ${flowconfigDir} can be used in path (NOTE: in windows you can use '/' and can omit '.cmd' in path)"
},
"flow.useBundledFlow": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "If true will use flow bundled with this plugin if nothing works"
},
"flow.showUncovered": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "If true will show uncovered code by default"
},
"flow.coverageSeverity": {
"scope": "resource",
"type": "string",
"enum": [
"error",
"warn",
"info"
],
"default": "info",
"description": "Type coverage diagnostic severity"
},
"flow.lazyMode": {
"scope": "resource",
"type": "string",
"default": null,
"description": "Set value to enable flow lazy mode"
},
"flow.stopFlowOnExit": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Stop Flow on Exit"
},
"flow.useCodeSnippetOnFunctionSuggest": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Complete functions with their parameter signature."
},
"flow.useLSP": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Turn off to switch from the official Flow Language Server implementation to talking directly to flow."
},
"flow.logLevel": {
"scope": "resource",
"type": "string",
"enum": [
"error",
"warn",
"info",
"trace"
],
"default": "info",
"description": "Log level for output panel logs"
},
"flow.trace.server": {
"scope": "window",
"anyOf": [
{
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off"
}
],
"default": "off",
"description": "Traces the communication between VSCode and the flow lsp service."
},
"flow.fileExtensions": {
"scope": "resource",
"type": "array",
"default": [
".js",
".mjs",
".jsx",
".flow",
".json"
],
"description": "(Supported only when useLSP: false). File extensions to consider for flow processing",
"items": {
"type": "string"
}
},
"flow.runOnEdit": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "If true will run flow on every edit, otherwise will run only when changes are saved (Note: 'useLSP: true' only supports syntax errors)"
},
"flow.runOnAllFiles": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "(Supported only when useLSP: false) Run Flow on all files, No need to put //@flow comment on top of files."
},
"flow.showStatus": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "(Supported only when useLSP: false) If true will display flow status is the statusbar"
}
}
},
"commands": [
{
"title": "Toggle display of uncovered areas",
"category": "Flow",
"command": "flow.toggleCoverage"
},
{
"title": "Show Client Status",
"category": "Flow",
"command": "flow.showStatus"
},
{
"title": "Restart Client",
"category": "Flow",
"command": "flow.restartClient"
},
{
"title": "Log Client Debug Info",
"category": "Flow",
"command": "flow.logClientDebugInfo"
},
{
"title": "Show Output Channel",
"category": "Flow",
"command": "flow.showOutputChannel"
}
],
"languages": [
{
"id": "javascript",
"aliases": [
"JavaScript",
"js"
],
"filenamePatterns": [
"*.js.flow"
]
},
{
"id": "ini",
"filenames": [
".flowconfig"
]
}
]
},
"scripts": {
"vscode:prepublish": "env NODE_ENV=production yarn build",
"compile": "yarn build --watch",
"build": "rm -rf build && rollup -c rollup.config.js",
"test": "flow check && yarn lint && yarn testonly",
"testonly": "env NODE_ENV=test jest",
"lint": "eslint lib"
},
"dependencies": {
"bin-version": "4.0.0",
"cross-spawn": "^6.0.5",
"dequeue": "^1.0.5",
"elegant-spinner": "^1.0.1",
"event-kit": "^2.5.3",
"flow-bin": "^0.103.0",
"fs-plus": "^3.1.1",
"fuzzaldrin": "^2.1.0",
"lodash.debounce": "^4.0.8",
"lru-cache": "^4.0.1",
"mkdirp": "^0.5.1",
"prettier": "1.18.2",
"rimraf": "^2.5.4",
"rxjs": "^5.0.0-beta.8",
"semver": "^6.2.0",
"shell-quote": "^1.6.0",
"temp": "^0.9.0",
"vscode-languageclient": "^5.2.1",
"which": "1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"babel-jest": "24.8.0",
"builtin-modules": "3.1.0",
"eslint": "5.16.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-playlyfe": "6.5.2",
"jest": "24.8.0",
"rollup": "1.17.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-progress": "1.1.1",
"rollup-plugin-terser": "5.1.1",
"vscode": "^1.1.35"
},
"icon": "flow-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/flowtype/flow-for-vscode.git"
},
"bugs": {
"url": "https://github.com/flowtype/flow-for-vscode/issues"
}
}