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%",
|
2017-11-03 01:06:07 +03:00
|
|
|
"version": "0.1.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": {
|
2017-09-23 18:34:42 +03:00
|
|
|
"vscode": "^1.17.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-10-18 23:35:10 +03:00
|
|
|
"onCommand:azureFunctions.createNewProject",
|
2017-09-22 21:44:35 +03:00
|
|
|
"onCommand:azureFunctions.createFunction",
|
|
|
|
"onCommand:azureFunctions.openInPortal",
|
|
|
|
"onCommand:azureFunctions.startFunctionApp",
|
|
|
|
"onCommand:azureFunctions.stopFunctionApp",
|
|
|
|
"onCommand:azureFunctions.restartFunctionApp",
|
2017-10-17 18:52:05 +03:00
|
|
|
"onCommand:azureFunctions.deployZip",
|
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-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
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"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
|
|
|
},
|
|
|
|
{
|
|
|
|
"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
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.deployZip",
|
|
|
|
"title": "%azFunc.deployZip%",
|
|
|
|
"category": "Azure Functions"
|
2017-10-18 23:39:04 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.deployZipFromExplorer",
|
|
|
|
"title": "%azFunc.deployZipFromExplorer%",
|
|
|
|
"category": "Azure Functions"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.deployZipFromFolder",
|
|
|
|
"title": "%azFunc.deployZipFromFolder%",
|
|
|
|
"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
|
|
|
},
|
|
|
|
{
|
|
|
|
"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": [
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.refresh",
|
|
|
|
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsSubscription",
|
2017-09-22 21:44:35 +03:00
|
|
|
"group": "1_subscriptionGeneralCommands@1"
|
2017-09-22 02:21:02 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.openInPortal",
|
|
|
|
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsFunctionApp",
|
2017-09-22 21:44:35 +03:00
|
|
|
"group": "1_functionAppGeneralCommands@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.startFunctionApp",
|
|
|
|
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsFunctionApp",
|
|
|
|
"group": "2_functionAppControlCommands@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.stopFunctionApp",
|
|
|
|
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsFunctionApp",
|
|
|
|
"group": "2_functionAppControlCommands@2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.restartFunctionApp",
|
|
|
|
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsFunctionApp",
|
|
|
|
"group": "2_functionAppControlCommands@3"
|
2017-10-17 18:52:05 +03:00
|
|
|
},
|
|
|
|
{
|
2017-10-18 23:39:04 +03:00
|
|
|
"command": "azureFunctions.deployZipFromExplorer",
|
2017-10-17 18:52:05 +03:00
|
|
|
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsFunctionApp",
|
|
|
|
"group": "3_functionAppDeployCommands@1"
|
2017-09-22 02:21:02 +03:00
|
|
|
}
|
2017-10-18 23:39:04 +03:00
|
|
|
],
|
|
|
|
"explorer/context": [
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.deployZipFromFolder",
|
|
|
|
"when": "explorerResourceIsFolder == true",
|
|
|
|
"group": "zzz_@1"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"commandPalette": [
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.deployZipFromExplorer",
|
|
|
|
"when": "never"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.deployZipFromFolder",
|
|
|
|
"when": "never"
|
|
|
|
}
|
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": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "Verified",
|
|
|
|
"enum": [
|
|
|
|
"Verified",
|
|
|
|
"Core",
|
|
|
|
"All"
|
|
|
|
],
|
|
|
|
"description": "%azFunc.templateFilterDescription%"
|
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",
|
2017-09-22 02:20:07 +03:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
|
|
"test": "node ./node_modules/vscode/bin/test"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
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-10-31 03:02:20 +03:00
|
|
|
"@types/request-promise": "^4.1.38",
|
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",
|
2017-09-22 02:20:07 +03:00
|
|
|
"azure-arm-resource": "^2.0.0-preview",
|
2017-09-22 02:21:02 +03:00
|
|
|
"azure-arm-website": "^1.0.0-preview",
|
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",
|
|
|
|
"opn": "^5.1.0",
|
2017-10-31 03:02:20 +03:00
|
|
|
"request-promise": "^4.2.2",
|
2017-10-02 19:32:53 +03:00
|
|
|
"vscode-extension-telemetry": "^0.0.6",
|
2017-10-17 18:52:05 +03:00
|
|
|
"vscode-nls": "^2.0.2",
|
2017-11-03 01:06:07 +03:00
|
|
|
"vscode-azureappservice": "^0.2.0"
|
2017-09-22 02:20:07 +03:00
|
|
|
},
|
|
|
|
"extensionDependencies": [
|
|
|
|
"ms-vscode.azure-account"
|
|
|
|
]
|
2017-11-04 22:13:32 +03:00
|
|
|
}
|