-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
227 lines (227 loc) · 6.24 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
{
"name": "flow-for-vscode",
"version": "2.2.1",
"publisher": "flowtype",
"description": "Flow support for VS Code",
"displayName": "Flow Language Support",
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"private": true,
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"workspaceContains:**/.flowconfig"
],
"main": "./build/index.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Flow",
"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.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."
}
}
},
"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": "rimraf build && rollup -c rollup.config.js",
"test": "flow check && yarn lint && yarn testonly",
"testonly": "env NODE_ENV=test jest",
"lint": "eslint lib --report-unused-disable-directives"
},
"dependencies": {
"bin-version": "^6.0.0",
"elegant-spinner": "^1.0.1",
"flow-bin": "^0.183.0",
"fs-plus": "^3.1.1",
"prettier": "1.18.2",
"rimraf": "^3.0.2",
"semver": "^6.3.0",
"vscode-languageclient": "^5.2.1",
"which": "1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@babel/preset-flow": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-jest": "28.1.3",
"babel-runtime": "^6.26.0",
"builtin-modules": "3.1.0",
"eslint": "7.32.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-playlyfe": "^7.0.1",
"jest": "28.1.3",
"rollup": "^2.77.2",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-terser": "7.0.2",
"vsce": "^2.10.0",
"vscode-uri": "2.0.3"
},
"icon": "flow-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/flow/flow-for-vscode.git"
},
"bugs": {
"url": "https://github.com/flow/flow-for-vscode/issues"
},
"__metadata": {
"id": "b3917e4f-5086-4def-a82b-2ae6b708db16",
"publisherDisplayName": "flowtype",
"publisherId": "abad690f-9e62-4fc4-a898-a944ea7d94b7"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "The Path To Flow setting will not be used in Restricted Mode.",
"restrictedConfigurations": [
"flow.pathToFlow"
]
}
}
}