-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
201 lines (174 loc) · 5.26 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
{
"name": "vscode-mssql",
"version": "0.0.5",
"displayname": "[Deprecated] MSSQL support in VS Code",
"description": "*Deprecated*. Get Microsoft's official 'mssql' extension from the VS Code Marketplace.",
"publisher": "sanagama",
"author": {
"name": "Sanjay Nagamangalam",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE.txt",
"icon": "images/sqlserver.png",
"galleryBanner": {
"color": "#CFB69A",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/sanagama/vscode-mssql.git"
},
"bugs": {
"url": "https://github.com/sanagama/vscode-mssql/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/sanagama/vscode-mssql/blob/master/README.md",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Languages"
],
"keywords": [
"SQL", "SQL Azure", "SQL Server", "Azure SQL Database", "Azure SQL Data Warehouse"
],
"activationEvents": [ "*" ],
"main": "./out/src/extension",
"extensionDependencies": [
"vscode.sql"
],
"devDependencies": {
"typescript": "^1.8.9",
"vscode": "^0.11.0"
},
"dependencies": {
"async": "^2.0.0-rc.3",
"mssql": "^3.2.0",
"express": "^4.13.3",
"open": "^0.0.5"
},
"contributes":
{
"languages": [
{
"id": "sql",
"extensions": [
".sql"
],
"aliases": [
"SQL"
],
"configuration": "./syntaxes/sql.configuration.json"
}
],
"grammars": [
{
"language": "sql",
"scopeName": "source.sql",
"path": "./syntaxes/SQL.plist"
}
],
"outputChannels": [
"MSSQL"
],
"snippets": [
{
"language": "sql",
"path": "./snippets/mssql.json"
}
],
"configuration": {
"type": "object",
"title": "MSSQL configuration",
"properties":
{
"vscode-mssql.logDebugInfo":
{
"type": "boolean",
"default": false,
"description": "[Optional] Log debug output to the VS Code console (Help -> Toggle Developer Tools)"
},
"vscode-mssql.connections":
{
"type": "array",
"default":
[
{
"server": "{{put-server-name-here}}",
"database": "{{put-database-name-here}}",
"user": "{{put-username-here}}",
"password": "{{put-password-here}}"
}
],
"description": "Connections placed here are shown in the connections picklist across VS Code sessions.",
"items":
{
"type": "object",
"properties":
{
"server":
{
"type": "string",
"default": "{{put-server-name-here}}",
"description": "[Required] Server to connect to. Use 'hostname\\instance' or '<server>.database.windows.net'."
},
"database":
{
"type": "string",
"default": "{{put-database-name-here}}",
"description": "[Optional] Database to connect to. If this is empty, default depends on server configuration, typically 'master'."
},
"user":
{
"type": "string",
"default": "{{put-username-here}}",
"description": "[Optional] User name for SQL authentication. If this is empty, you are prompted when you connect."
},
"password":
{
"type": "string",
"default": "{{put-password-here}}",
"description": "[Optional] Password for SQL authentication. If this is empty, you are prompted when you connect."
},
"connectionTimeout":
{
"type": "number",
"default": 15000,
"description": "[Optional] Connection timeout in milliseconds. Default is 30000 ms for Azure SQL DB and 15000 ms otherwise."
},
"requestTimeout":
{
"type": "number",
"default": 15000,
"description": "[Optional] Request timeout in milliseconds. Default is 30000 ms for Azure SQL DB and 15000 ms otherwise."
},
"options":
{
"type": "object",
"properties":
{
"encrypt":
{
"type": "boolean",
"default": false,
"description": "[Optional] Specify if the connection will be encrypted. Always set to 'true' for Azure SQL DB and loaded from here otherwise."
},
"appName":
{
"type": "string",
"default": "vscode-mssql",
"description": "[Optional] Application name used for SQL server logging (default: 'vscode-mssql')."
}
}
}
}
}
}
}
}
},
"scripts": {
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
}
}