-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
169 lines (169 loc) · 4.73 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
{
"name": "azuretoolsforvscode",
"displayName": "Azure Tools for Visual Studio Code",
"description": "Convenient features for Microsoft Azure developers.",
"version": "1.3.0",
"publisher": "bradygaster",
"repository": {
"type": "git",
"url": "https://github.com/bradygaster/azure-tools-vscode.git"
},
"bugs": {
"url": "https://github.com/bradygaster/azure-tools-vscode/issues"
},
"keywords": [
"Azure",
"cloud"
],
"icon": "media/azure-icon.png",
"galleryBanner": {
"color": "#0072c6",
"theme": "dark"
},
"engines": {
"vscode": "^1.4.0"
},
"categories": [
"Other",
"Azure"
],
"activationEvents": [
"*"
],
"main": "./src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Azure Tools configuration",
"properties": {
"azure.tenantId": {
"type": "string",
"default": null,
"description": "Your AAD Tenant ID from the portal. You need to set this if you intend on logging in using an MSA (@outlook.com, @live.com, @hotmail.com, etc.)."
},
"azure.enableTelemetry": {
"type": "boolean",
"default": true,
"description": "To opt out of sending basic usage telemetry set this to false. Default is true."
},
"azure.showToolsWindowOnStartup": {
"type": "boolean",
"default": true,
"description": "To prevent the Azure Tools panel showing on startup set this to false. Default is true"
}
}
},
"commands": [
{
"command": "azure.subscription-select",
"title": "List Azure Subscriptions",
"category": "Azure"
},
{
"command": "azure.storage-getConnectionString",
"title": "Get a Storage Account Connection String",
"category": "Azure"
},
{
"command": "azure.storage-createAccount",
"title": "Create a Storage Account",
"category": "Azure"
},
{
"command": "azure.login",
"title": "Login",
"category": "Azure"
},
{
"command": "azure.webApp-create-advanced",
"title": "Create a Web App (Advanced)",
"category": "Azure"
},
{
"command": "azure.webApp-create-simple",
"title": "Create a Web App (Simple)",
"category": "Azure"
},
{
"command": "azure.keyVault-create",
"title": "Create a Key Vault",
"category": "Azure"
},
{
"command": "azure.browse-resource",
"title": "Browse in Portal (Select a resource to open in the Azure Portal)",
"category": "Azure"
},
{
"command": "azure.browse-resourceGroup",
"title": "Browse Resource Group in Portal",
"category": "Azure"
},
{
"command": "azure.region-select",
"title": "Set your active Azure Data Center",
"category": "Azure"
},
{
"command": "azure.functionApp-create-simple",
"title": "Create an Azure Function App (Simple)",
"category": "Azure"
},
{
"command": "azure.functionApp-create-advanced",
"title": "Create an Azure Function App (Advanced)",
"category": "Azure"
},
{
"command": "azure.template-search",
"title": "Search the Azure Resource Manager (ARM) Template QuickStarts on GitHub",
"category": "Azure"
},
{
"command": "azure.template-deploy",
"title": "Deploy one of the Azure Resource Manager (ARM) templates in your workspace",
"category": "Azure"
},
{
"command": "azure.template-export",
"title": "Export one of your Resource Groups as a template saved in your workspace",
"category": "Azure"
},
{
"command": "azure.batch-create",
"title": "Create an Azure Batch Account",
"category": "Azure"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
},
"extensionDependencies": [
"msazurermtools.azurerm-vscode-tools",
"johnpapa.azure-functions-tools"
],
"dependencies": {
"adal-node": "^0.1.17",
"applicationinsights": "0.20.0",
"azure-arm-batch": "0.3.0",
"azure-arm-keyvault": "0.11.4",
"azure-arm-resource": "1.5.1-preview",
"azure-arm-storage": "^0.13.4-preview",
"azure-arm-website": "0.11.4",
"azure-gallery": "^2.0.0-pre.20",
"azure-keyvault": "^1.0.0",
"copy-paste": "^1.3.0",
"documentdb": "1.10.1",
"download-file": "^0.1.5",
"fs-path": "0.0.23",
"get-urls": "^5.0.1",
"moment": "^2.17.1",
"ms-rest-azure": "1.15.2",
"octonode": "^0.7.7",
"open": "0.0.5"
}
}