2017-09-22 02:20:07 +03:00
{
"name" : "vscode-azurefunctions" ,
"displayName" : "Azure Functions" ,
2017-10-02 19:32:53 +03:00
"description" : "%extension.description%" ,
2018-02-22 23:12:41 +03:00
"version" : "0.6.1" ,
2017-09-22 02:20:07 +03:00
"publisher" : "ms-azuretools" ,
2017-09-27 19:31:25 +03:00
"icon" : "resources/azure-functions.png" ,
2017-09-22 02:20:07 +03:00
"aiKey" : "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217" ,
"engines" : {
2018-02-20 19:53:36 +03:00
"vscode" : "^1.20.0"
2017-09-22 02:20:07 +03:00
} ,
"repository" : {
"type" : "git" ,
"url" : "https://github.com/Microsoft/vscode-azurefunctions"
} ,
"galleryBanner" : {
"color" : "#0072c6" ,
"theme" : "dark"
} ,
"homepage" : "https://github.com/Microsoft/vscode-azurefunctions/blob/master/README.md" ,
"license" : "SEE LICENSE IN LICENSE.md" ,
"categories" : [
"Azure"
] ,
2017-11-01 19:19:29 +03:00
"keywords" : [
"Azure" ,
"Functions" ,
"multi-root ready"
] ,
2017-09-22 02:20:07 +03:00
"preview" : true ,
"activationEvents" : [
"onCommand:azureFunctions.refresh" ,
2017-11-17 21:04:32 +03:00
"onCommand:azureFunctions.loadMore" ,
2017-10-18 23:35:10 +03:00
"onCommand:azureFunctions.createNewProject" ,
2018-03-01 22:13:46 +03:00
"onCommand:azureFunctions.initProjectForVSCode" ,
2017-09-22 21:44:35 +03:00
"onCommand:azureFunctions.createFunction" ,
2017-11-08 06:40:59 +03:00
"onCommand:azureFunctions.createFunctionApp" ,
2017-09-22 21:44:35 +03:00
"onCommand:azureFunctions.openInPortal" ,
"onCommand:azureFunctions.startFunctionApp" ,
"onCommand:azureFunctions.stopFunctionApp" ,
"onCommand:azureFunctions.restartFunctionApp" ,
2017-11-09 06:24:53 +03:00
"onCommand:azureFunctions.deleteFunctionApp" ,
2017-12-12 04:27:21 +03:00
"onCommand:azureFunctions.copyFunctionUrl" ,
2017-11-29 23:55:48 +03:00
"onCommand:azureFunctions.deleteFunction" ,
2017-11-09 23:21:36 +03:00
"onCommand:azureFunctions.deploy" ,
2017-12-11 22:30:49 +03:00
"onCommand:azureFunctions.configureDeploymentSource" ,
2018-02-26 22:35:33 +03:00
"onCommand:azureFunctions.debugFunctionAppOnAzure" ,
2017-11-29 23:55:48 +03:00
"onCommand:azureFunctions.appSettings.add" ,
"onCommand:azureFunctions.appSettings.edit" ,
"onCommand:azureFunctions.appSettings.rename" ,
"onCommand:azureFunctions.appSettings.delete" ,
2018-01-12 04:37:52 +03:00
"onCommand:azureFunctions.pickProcess" ,
2018-01-25 00:18:02 +03:00
"onCommand:azureFunctions.installDotnetTemplates" ,
"onCommand:azureFunctions.uninstallDotnetTemplates" ,
2018-02-06 22:47:12 +03:00
"onCommand:azureFunctions.startStreamingLogs" ,
"onCommand:azureFunctions.stopStreamingLogs" ,
2018-02-27 00:15:31 +03:00
"onCommand:azureFunctions.deleteProxy" ,
2017-09-22 02:20:07 +03:00
"onView:azureFunctionsExplorer"
] ,
"main" : "./out/src/extension" ,
"contributes" : {
"commands" : [
{
"command" : "azureFunctions.refresh" ,
2017-10-02 19:32:53 +03:00
"title" : "%azFunc.refresh%" ,
2017-09-22 02:20:07 +03:00
"category" : "Azure Functions" ,
"icon" : {
2017-09-22 02:21:48 +03:00
"light" : "resources/light/Refresh.svg" ,
"dark" : "resources/dark/Refresh.svg"
}
} ,
2017-11-17 21:04:32 +03:00
{
"command" : "azureFunctions.loadMore" ,
"title" : "%azFunc.loadMore%" ,
"category" : "Azure Functions"
} ,
2017-09-22 02:21:48 +03:00
{
2017-10-18 23:35:10 +03:00
"command" : "azureFunctions.createNewProject" ,
"title" : "%azFunc.createNewProject%" ,
2017-09-22 02:21:48 +03:00
"category" : "Azure Functions" ,
"icon" : {
2017-10-18 23:35:10 +03:00
"light" : "resources/light/CreateNewProject.svg" ,
"dark" : "resources/dark/CreateNewProject.svg"
2017-09-22 02:21:48 +03:00
}
} ,
2018-03-01 22:13:46 +03:00
{
"command" : "azureFunctions.initProjectForVSCode" ,
"title" : "%azFunc.initProjectForVSCode%" ,
"category" : "Azure Functions"
} ,
2017-09-22 02:21:48 +03:00
{
"command" : "azureFunctions.createFunction" ,
2017-10-02 19:32:53 +03:00
"title" : "%azFunc.createFunction%" ,
2017-09-22 02:21:48 +03:00
"category" : "Azure Functions" ,
"icon" : {
"light" : "resources/light/AddFunction.svg" ,
"dark" : "resources/dark/AddFunction.svg"
2017-09-22 02:20:07 +03:00
}
2017-09-22 02:21:02 +03:00
} ,
2017-11-08 06:40:59 +03:00
{
"command" : "azureFunctions.createFunctionApp" ,
"title" : "%azFunc.createFunctionApp%" ,
"category" : "Azure Functions"
} ,
2017-09-22 02:21:02 +03:00
{
"command" : "azureFunctions.openInPortal" ,
2017-10-02 19:32:53 +03:00
"title" : "%azFunc.openInPortal%" ,
2017-09-22 02:21:02 +03:00
"category" : "Azure Functions"
2017-09-22 21:44:35 +03:00
} ,
{
"command" : "azureFunctions.startFunctionApp" ,
2017-10-02 19:32:53 +03:00
"title" : "%azFunc.startFunctionApp%" ,
2017-09-22 21:44:35 +03:00
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.stopFunctionApp" ,
2017-10-02 19:32:53 +03:00
"title" : "%azFunc.stopFunctionApp%" ,
2017-09-22 21:44:35 +03:00
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.restartFunctionApp" ,
2017-10-02 19:32:53 +03:00
"title" : "%azFunc.restartFunctionApp%" ,
2017-09-22 21:44:35 +03:00
"category" : "Azure Functions"
2017-10-17 18:52:05 +03:00
} ,
2017-11-09 06:24:53 +03:00
{
"command" : "azureFunctions.deleteFunctionApp" ,
"title" : "%azFunc.deleteFunctionApp%" ,
"category" : "Azure Functions"
} ,
2017-10-17 18:52:05 +03:00
{
2017-11-09 23:21:36 +03:00
"command" : "azureFunctions.deploy" ,
2017-12-11 22:30:49 +03:00
"title" : "%azFunc.deploy%" ,
2017-11-08 06:40:59 +03:00
"category" : "Azure Functions" ,
"icon" : {
"light" : "resources/light/Deploy.svg" ,
"dark" : "resources/dark/Deploy.svg"
}
2017-11-29 23:55:48 +03:00
} ,
2017-12-11 22:30:49 +03:00
{
"command" : "azureFunctions.configureDeploymentSource" ,
"title" : "%azFunc.configureDeploymentSource%" ,
"category" : "Azure Functions"
} ,
2018-02-26 22:35:33 +03:00
{
"command" : "azureFunctions.debugFunctionAppOnAzure" ,
"title" : "%azFunc.debugFunctionAppOnAzure%" ,
"category" : "Azure Functions"
} ,
2017-12-12 04:27:21 +03:00
{
"command" : "azureFunctions.copyFunctionUrl" ,
"title" : "%azFunc.copyFunctionUrl%" ,
"category" : "Azure Functions"
} ,
2017-11-29 23:55:48 +03:00
{
"command" : "azureFunctions.deleteFunction" ,
"title" : "%azFunc.deleteFunction%" ,
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.appSettings.add" ,
"title" : "%azFunc.appSettings.add%" ,
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.appSettings.edit" ,
"title" : "%azFunc.appSettings.edit%" ,
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.appSettings.rename" ,
"title" : "%azFunc.appSettings.rename%" ,
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.appSettings.delete" ,
"title" : "%azFunc.appSettings.delete%" ,
"category" : "Azure Functions"
2018-01-12 04:37:52 +03:00
} ,
{
"command" : "azureFunctions.pickProcess" ,
"title" : "%azFunc.pickProcess%" ,
"category" : "Azure Functions"
2018-01-25 00:18:02 +03:00
} ,
{
"command" : "azureFunctions.installDotnetTemplates" ,
"title" : "%azFunc.installDotnetTemplates%" ,
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.uninstallDotnetTemplates" ,
"title" : "%azFunc.uninstallDotnetTemplates%" ,
"category" : "Azure Functions"
2018-02-06 22:47:12 +03:00
} ,
{
"command" : "azureFunctions.startStreamingLogs" ,
"title" : "%azFunc.startStreamingLogs%" ,
"category" : "Azure Functions"
} ,
{
"command" : "azureFunctions.stopStreamingLogs" ,
"title" : "%azFunc.stopStreamingLogs%" ,
"category" : "Azure Functions"
2018-02-27 00:15:31 +03:00
} ,
{
"command" : "azureFunctions.deleteProxy" ,
"title" : "%azFunc.deleteProxy%" ,
"category" : "Azure Functions"
2017-09-22 02:20:07 +03:00
}
] ,
"views" : {
"explorer" : [
{
"id" : "azureFunctionsExplorer" ,
2017-11-04 22:13:32 +03:00
"name" : "Azure Functions" ,
2017-10-04 19:52:07 +03:00
"when" : "config.azureFunctions.showExplorer == true"
2017-09-22 02:20:07 +03:00
}
]
} ,
"menus" : {
"view/title" : [
{
2017-10-18 23:35:10 +03:00
"command" : "azureFunctions.createNewProject" ,
2017-09-22 02:21:48 +03:00
"when" : "view == azureFunctionsExplorer" ,
"group" : "navigation@1"
} ,
{
"command" : "azureFunctions.createFunction" ,
2017-09-22 02:20:07 +03:00
"when" : "view == azureFunctionsExplorer" ,
"group" : "navigation@2"
2017-09-22 02:21:48 +03:00
} ,
2017-11-08 06:40:59 +03:00
{
2017-11-09 23:21:36 +03:00
"command" : "azureFunctions.deploy" ,
2017-11-08 06:40:59 +03:00
"when" : "view == azureFunctionsExplorer" ,
"group" : "navigation@3"
} ,
2017-09-22 02:21:48 +03:00
{
"command" : "azureFunctions.refresh" ,
"when" : "view == azureFunctionsExplorer" ,
"group" : "navigation@3"
2017-09-22 02:20:07 +03:00
}
2017-09-22 02:21:02 +03:00
] ,
"view/item/context" : [
{
2017-11-09 23:21:36 +03:00
"command" : "azureFunctions.createFunctionApp" ,
2018-02-20 19:53:36 +03:00
"when" : "view == azureFunctionsExplorer && viewItem == azureextensionui.azureSubscription" ,
2017-11-08 06:40:59 +03:00
"group" : "1@1"
} ,
{
2018-02-20 19:53:36 +03:00
"command" : "azureFunctions.openInPortal" ,
"when" : "view == azureFunctionsExplorer && viewItem == azureextensionui.azureSubscription" ,
2017-11-09 23:21:36 +03:00
"group" : "2@1"
2017-09-22 02:21:02 +03:00
} ,
2018-02-20 19:53:36 +03:00
{
"command" : "azureFunctions.refresh" ,
"when" : "view == azureFunctionsExplorer && viewItem == azureextensionui.azureSubscription" ,
"group" : "3@1"
} ,
2017-09-22 02:21:02 +03:00
{
"command" : "azureFunctions.openInPortal" ,
2017-11-29 23:55:48 +03:00
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
2017-11-08 06:40:59 +03:00
"group" : "1@1"
2017-09-22 21:44:35 +03:00
} ,
{
"command" : "azureFunctions.startFunctionApp" ,
2017-11-29 23:55:48 +03:00
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
2017-11-08 06:40:59 +03:00
"group" : "2@1"
2017-09-22 21:44:35 +03:00
} ,
{
"command" : "azureFunctions.stopFunctionApp" ,
2017-11-29 23:55:48 +03:00
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
2017-11-08 06:40:59 +03:00
"group" : "2@2"
2017-09-22 21:44:35 +03:00
} ,
{
"command" : "azureFunctions.restartFunctionApp" ,
2017-11-29 23:55:48 +03:00
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
2017-11-08 06:40:59 +03:00
"group" : "2@3"
2017-11-09 06:24:53 +03:00
} ,
2018-02-26 22:35:33 +03:00
{
"command" : "azureFunctions.deleteFunctionApp" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
"group" : "2@4"
} ,
2017-12-11 22:30:49 +03:00
{
"command" : "azureFunctions.configureDeploymentSource" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
"group" : "3@1"
} ,
2018-02-06 22:47:12 +03:00
{
"command" : "azureFunctions.startStreamingLogs" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
"group" : "4@1"
} ,
{
"command" : "azureFunctions.stopStreamingLogs" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
"group" : "4@2"
} ,
2017-11-09 06:24:53 +03:00
{
2018-02-26 22:35:33 +03:00
"command" : "azureFunctions.debugFunctionAppOnAzure" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp && config.azureFunctions.enableRemoteDebugging == true" ,
"group" : "5@1"
2017-11-29 23:55:48 +03:00
} ,
2018-01-05 21:28:25 +03:00
{
"command" : "azureFunctions.refresh" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp" ,
2018-02-26 22:35:33 +03:00
"group" : "6@1"
2018-01-05 21:28:25 +03:00
} ,
2017-11-29 23:55:48 +03:00
{
"command" : "azureFunctions.refresh" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunctions" ,
"group" : "1@1"
} ,
{
2017-12-12 04:27:21 +03:00
"command" : "azureFunctions.copyFunctionUrl" ,
2017-11-29 23:55:48 +03:00
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunction" ,
"group" : "1@1"
} ,
2017-12-12 04:27:21 +03:00
{
"command" : "azureFunctions.deleteFunction" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunction" ,
2018-02-06 22:47:12 +03:00
"group" : "2@1"
} ,
{
"command" : "azureFunctions.startStreamingLogs" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunction" ,
"group" : "3@1"
} ,
{
"command" : "azureFunctions.stopStreamingLogs" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncFunction" ,
"group" : "3@2"
2017-12-12 04:27:21 +03:00
} ,
2017-11-29 23:55:48 +03:00
{
"command" : "azureFunctions.appSettings.add" ,
"when" : "view == azureFunctionsExplorer && viewItem == applicationSettings" ,
"group" : "1@1"
} ,
{
"command" : "azureFunctions.refresh" ,
"when" : "view == azureFunctionsExplorer && viewItem == applicationSettings" ,
"group" : "2@1"
} ,
{
"command" : "azureFunctions.appSettings.edit" ,
"when" : "view == azureFunctionsExplorer && viewItem == applicationSettingItem" ,
"group" : "1@1"
} ,
{
"command" : "azureFunctions.appSettings.rename" ,
"when" : "view == azureFunctionsExplorer && viewItem == applicationSettingItem" ,
"group" : "1@2"
} ,
{
"command" : "azureFunctions.appSettings.delete" ,
"when" : "view == azureFunctionsExplorer && viewItem == applicationSettingItem" ,
"group" : "1@3"
2018-02-27 00:15:31 +03:00
} ,
{
"command" : "azureFunctions.refresh" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncProxies" ,
"group" : "1@1"
} ,
{
"command" : "azureFunctions.deleteProxy" ,
"when" : "view == azureFunctionsExplorer && viewItem == azFuncProxy" ,
"group" : "1@1"
2017-09-22 02:21:02 +03:00
}
2017-10-18 23:39:04 +03:00
] ,
"explorer/context" : [
{
2017-11-09 23:21:36 +03:00
"command" : "azureFunctions.deploy" ,
2017-10-18 23:39:04 +03:00
"when" : "explorerResourceIsFolder == true" ,
"group" : "zzz_@1"
}
2017-11-17 21:04:32 +03:00
] ,
"commandPalette" : [
{
"command" : "azureFunctions.refresh" ,
"when" : "never"
} ,
{
"command" : "azureFunctions.loadMore" ,
"when" : "never"
2018-01-12 04:37:52 +03:00
} ,
{
"command" : "azureFunctions.pickProcess" ,
"when" : "never"
2018-02-26 22:35:33 +03:00
} ,
{
"command" : "azureFunctions.debugFunctionAppOnAzure" ,
"when" : "config.azureFunctions.enableRemoteDebugging == true"
2017-11-17 21:04:32 +03:00
}
2017-09-22 02:20:07 +03:00
]
2017-09-27 20:45:48 +03:00
} ,
"jsonValidation" : [
{
"fileMatch" : "/function.json" ,
"url" : "http://json.schemastore.org/function"
} ,
{
"fileMatch" : "/host.json" ,
"url" : "http://json.schemastore.org/host"
} ,
{
"fileMatch" : "/proxies.json" ,
"url" : "http://json.schemastore.org/proxies"
}
2017-10-04 19:52:07 +03:00
] ,
"configuration" : [
{
"title" : "Azure Functions" ,
"properties" : {
"azureFunctions.showExplorer" : {
"type" : "boolean" ,
"default" : true ,
"description" : "%azFunc.showExplorerDescription%"
2017-10-30 19:59:47 +03:00
} ,
"azureFunctions.templateFilter" : {
2018-02-08 00:55:45 +03:00
"scope" : "resource" ,
2017-10-30 19:59:47 +03:00
"type" : "string" ,
"default" : "Verified" ,
"enum" : [
"Verified" ,
"Core" ,
"All"
] ,
"description" : "%azFunc.templateFilterDescription%"
2017-12-13 02:53:57 +03:00
} ,
"azureFunctions.zipGlobPattern" : {
2018-02-08 00:55:45 +03:00
"scope" : "resource" ,
2017-12-13 02:53:57 +03:00
"type" : "string" ,
"default" : "**/*" ,
"description" : "Defines which files in the workspace to deploy. This applies to Zip deploy only, has no effect on other deployment methods."
} ,
"azureFunctions.zipIgnorePattern" : {
2018-02-08 00:55:45 +03:00
"scope" : "resource" ,
2017-12-13 02:53:57 +03:00
"type" : "string" ,
"default" : "" ,
"description" : "Defines which files in the workspace to ignore for Zip deploy. This applies to Zip deploy only, has no effect on other deployment methods."
2017-12-14 01:43:17 +03:00
} ,
"azureFunctions.projectRuntime" : {
2018-02-08 00:55:45 +03:00
"scope" : "resource" ,
2017-12-14 01:43:17 +03:00
"type" : "string" ,
"enum" : [
"~1" ,
"beta"
] ,
"description" : "%azFunc.projectRuntimeDescription%"
} ,
"azureFunctions.projectLanguage" : {
2018-02-08 00:55:45 +03:00
"scope" : "resource" ,
2017-12-14 01:43:17 +03:00
"type" : "string" ,
"enum" : [
"Bash" ,
"Batch" ,
2018-01-12 04:37:52 +03:00
"C#" ,
2018-01-23 20:22:29 +03:00
"C#Script" ,
"F#Script" ,
2017-12-14 01:43:17 +03:00
"Java" ,
"JavaScript" ,
"PHP" ,
"PowerShell" ,
"Python" ,
"TypeScript"
] ,
"description" : "%azFunc.projectLanguageDescription%"
2018-01-19 02:41:35 +03:00
} ,
2018-01-25 00:24:29 +03:00
"azureFunctions.deploySubpath" : {
2018-02-08 00:55:45 +03:00
"scope" : "resource" ,
2018-01-19 02:41:35 +03:00
"type" : "string" ,
2018-01-25 00:24:29 +03:00
"description" : "%azFunc.deploySubpathDescription%"
2018-02-08 19:20:17 +03:00
} ,
"azureFunctions.showCoreToolsWarning" : {
"type" : "boolean" ,
"description" : "%azFunc.showCoreToolsWarningDescription%" ,
"default" : true
2018-02-09 19:25:41 +03:00
} ,
"azureFunctions.show64BitWarning" : {
"type" : "boolean" ,
"description" : "%azFunc.show64BitWarningDescription%" ,
"default" : true
2018-02-26 22:35:33 +03:00
} ,
"azureFunctions.enableRemoteDebugging" : {
"type" : "boolean" ,
"description" : "%azFunc.enableRemoteDebugging%" ,
"default" : false
2018-03-01 22:13:46 +03:00
} ,
"azureFunctions.showProjectWarning" : {
"type" : "boolean" ,
"description" : "%azFunc.showProjectWarningDescription%" ,
"default" : true
2018-03-02 01:33:02 +03:00
} ,
"azureFunctions.pickProcessTimeout" : {
"type" : "integer" ,
"description" : "%azFunc.pickProcessTimeoutDescription%" ,
"default" : 60
2017-10-04 19:52:07 +03:00
}
}
}
2017-09-27 20:45:48 +03:00
]
2017-09-22 02:20:07 +03:00
} ,
"scripts" : {
"vscode:prepublish" : "tsc -p ./" ,
"compile" : "tsc -watch -p ./" ,
2017-11-01 20:23:29 +03:00
"lint" : "tslint --project tsconfig.json -e src/*.d.ts -t verbose" ,
2018-01-11 22:07:59 +03:00
"postinstall" : "node ./node_modules/vscode/bin/install"
2017-09-22 02:20:07 +03:00
} ,
"devDependencies" : {
2017-12-12 04:27:21 +03:00
"@types/clipboardy" : "^1.1.0" ,
2017-11-01 20:23:29 +03:00
"@types/fs-extra" : "^4.0.3" ,
2017-10-12 23:51:13 +03:00
"@types/mocha" : "^2.2.32" ,
2017-09-22 02:20:07 +03:00
"@types/node" : "^8.0.28" ,
2017-11-09 19:18:38 +03:00
"@types/request" : "2.0.7" ,
2017-11-28 19:24:25 +03:00
"@types/request-promise" : "4.1.38" ,
2018-02-08 19:20:17 +03:00
"@types/semver" : "^5.5.0" ,
2018-02-26 22:35:33 +03:00
"@types/websocket" : "^0.0.37" ,
2017-11-28 19:24:25 +03:00
"@types/xml2js" : "^0.4.2" ,
2018-01-20 03:15:14 +03:00
"@types/xregexp" : "^3.0.29" ,
2018-01-10 03:18:19 +03:00
"gulp" : "^3.9.1" ,
"gulp-decompress" : "^2.0.1" ,
"gulp-download" : "^0.0.1" ,
2017-10-12 23:51:13 +03:00
"mocha" : "^2.3.3" ,
2017-10-02 19:07:24 +03:00
"tslint" : "^5.7.0" ,
"tslint-microsoft-contrib" : "5.0.1" ,
2017-09-22 02:20:07 +03:00
"typescript" : "^2.0.3" ,
"vscode" : "^1.0.0"
} ,
"dependencies" : {
2017-10-31 03:02:20 +03:00
"azure-arm-cosmosdb" : "^1.0.0-preview" ,
2018-01-05 02:06:57 +03:00
"azure-arm-resource" : "^3.0.0-preview" ,
2017-11-06 21:51:10 +03:00
"azure-arm-storage" : "^3.1.0" ,
2017-11-28 19:24:25 +03:00
"azure-arm-website" : "^1.0.0-preview" ,
2017-12-12 04:27:21 +03:00
"clipboardy" : "^1.2.2" ,
2017-11-01 20:23:29 +03:00
"fs-extra" : "^4.0.2" ,
2017-09-22 02:20:07 +03:00
"ms-rest" : "^2.2.2" ,
"ms-rest-azure" : "^2.3.1" ,
2018-02-08 19:20:17 +03:00
"opn" : "^5.2.0" ,
2018-02-26 22:35:33 +03:00
"portfinder" : "^1.0.13" ,
2018-01-12 04:37:52 +03:00
"ps-node" : "^0.1.6" ,
2017-10-31 03:02:20 +03:00
"request-promise" : "^4.2.2" ,
2018-02-08 19:20:17 +03:00
"semver" : "^5.5.0" ,
2018-03-02 02:00:40 +03:00
"vscode-azureappservice" : "~0.11.0" ,
"vscode-azureextensionui" : "~0.8.0" ,
2018-02-27 00:15:31 +03:00
"vscode-azurekudu" : "~0.1.6" ,
2018-03-02 02:00:40 +03:00
"vscode-extension-telemetry" : "^0.0.15" ,
2017-10-17 18:52:05 +03:00
"vscode-nls" : "^2.0.2" ,
2018-02-26 22:35:33 +03:00
"websocket" : "^1.0.25" ,
2018-01-20 03:15:14 +03:00
"xml2js" : "^0.4.19" ,
"xregexp" : "^4.0.0"
2017-09-22 02:20:07 +03:00
} ,
"extensionDependencies" : [
"ms-vscode.azure-account"
]
2017-11-04 22:13:32 +03:00
}