2018-08-01 18:00:40 +03:00
|
|
|
{
|
2018-08-13 21:09:54 +03:00
|
|
|
"name": "azure-pipelines",
|
|
|
|
"displayName": "Azure Pipelines",
|
2019-02-15 19:59:10 +03:00
|
|
|
"description": "Syntax highlighting, IntelliSense, and more for Azure Pipelines YAML",
|
2020-01-22 22:00:25 +03:00
|
|
|
"version": "1.165.1",
|
2018-08-15 16:48:05 +03:00
|
|
|
"publisher": "ms-azure-devops",
|
2019-08-13 13:06:18 +03:00
|
|
|
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
|
2018-08-15 16:48:05 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-11-16 17:41:43 +03:00
|
|
|
"url": "https://github.com/Microsoft/azure-pipelines-vscode"
|
2018-08-15 16:48:05 +03:00
|
|
|
},
|
2018-11-16 17:41:43 +03:00
|
|
|
"homepage": "https://github.com/Microsoft/azure-pipelines-vscode/blob/master/README.md",
|
|
|
|
"bugs": "https://github.com/Microsoft/azure-pipelines-vscode/issues/",
|
2018-08-15 16:48:05 +03:00
|
|
|
"license": "MIT",
|
2018-08-13 14:46:57 +03:00
|
|
|
"icon": "assets/pipelines.png",
|
2018-08-15 16:48:05 +03:00
|
|
|
"galleryBanner": {
|
2018-11-29 23:38:02 +03:00
|
|
|
"color": "#D4DCEC",
|
|
|
|
"theme": "light"
|
2018-08-15 16:48:05 +03:00
|
|
|
},
|
2018-08-06 21:49:28 +03:00
|
|
|
"engines": {
|
2019-07-16 15:01:51 +03:00
|
|
|
"vscode": "^1.32.0"
|
2018-08-06 21:49:28 +03:00
|
|
|
},
|
|
|
|
"categories": [
|
2018-08-15 16:48:05 +03:00
|
|
|
"Programming Languages",
|
2019-07-16 15:01:51 +03:00
|
|
|
"Formatters",
|
|
|
|
"Azure"
|
2018-08-06 21:49:28 +03:00
|
|
|
],
|
2019-02-15 19:59:10 +03:00
|
|
|
"tags": [
|
|
|
|
"azure-pipelines",
|
|
|
|
"Azure Pipelines",
|
|
|
|
"YAML"
|
|
|
|
],
|
2019-03-13 18:47:16 +03:00
|
|
|
"keywords": [
|
|
|
|
"YAML",
|
|
|
|
"Azure Pipelines",
|
|
|
|
"continuous integration",
|
2019-03-18 19:53:38 +03:00
|
|
|
"CI/CD"
|
2019-03-13 18:47:16 +03:00
|
|
|
],
|
2018-08-06 21:49:28 +03:00
|
|
|
"activationEvents": [
|
2018-08-24 17:06:33 +03:00
|
|
|
"*"
|
2018-08-06 21:49:28 +03:00
|
|
|
],
|
2018-08-01 18:00:40 +03:00
|
|
|
"main": "./out/extension",
|
|
|
|
"contributes": {
|
2018-08-06 17:36:07 +03:00
|
|
|
"languages": [
|
2018-08-01 18:00:40 +03:00
|
|
|
{
|
2018-08-06 17:36:07 +03:00
|
|
|
"id": "azure-pipelines",
|
|
|
|
"configuration": "./language-configuration.json",
|
2018-08-06 21:49:28 +03:00
|
|
|
"filenamePatterns": [
|
2018-08-13 15:01:08 +03:00
|
|
|
"azure-pipelines.yml",
|
|
|
|
"azure-pipelines.yaml",
|
2018-11-27 00:03:06 +03:00
|
|
|
".azure-pipelines.yml",
|
|
|
|
".azure-pipelines.yaml",
|
|
|
|
"azure-pipelines/**/*.yml",
|
|
|
|
"azure-pipelines/**/*.yaml",
|
|
|
|
".azure-pipelines/**/*.yml",
|
|
|
|
".azure-pipelines/**/*.yaml",
|
2018-08-13 15:01:08 +03:00
|
|
|
".vsts-ci.yml",
|
|
|
|
"vsts-ci.yml"
|
2018-08-06 21:49:28 +03:00
|
|
|
],
|
|
|
|
"aliases": [
|
|
|
|
"Azure Pipelines"
|
|
|
|
]
|
2018-08-01 18:00:40 +03:00
|
|
|
}
|
2018-08-06 17:36:07 +03:00
|
|
|
],
|
|
|
|
"grammars": [
|
|
|
|
{
|
|
|
|
"language": "azure-pipelines",
|
|
|
|
"scopeName": "source.yaml",
|
|
|
|
"path": "./syntaxes/yaml.tmLanguage.json"
|
|
|
|
}
|
|
|
|
],
|
2018-08-22 18:01:06 +03:00
|
|
|
"configuration": {
|
|
|
|
"title": "Azure Pipelines extension configuration.",
|
2019-08-19 18:00:57 +03:00
|
|
|
"properties": {
|
2019-08-21 09:20:22 +03:00
|
|
|
"[azure-pipelines].configure": {
|
2019-08-19 18:00:57 +03:00
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"description": "Enable to opt-in for Configure Pipeline feature."
|
|
|
|
}
|
|
|
|
}
|
2018-08-22 18:01:06 +03:00
|
|
|
},
|
2018-08-13 17:05:01 +03:00
|
|
|
"configurationDefaults": {
|
|
|
|
"[azure-pipelines]": {
|
2018-08-13 22:06:12 +03:00
|
|
|
"editor.insertSpaces": true,
|
|
|
|
"editor.tabSize": 2,
|
|
|
|
"editor.quickSuggestions": {
|
2018-08-15 21:47:53 +03:00
|
|
|
"other": true,
|
|
|
|
"comments": false,
|
|
|
|
"strings": true
|
2018-08-13 22:06:12 +03:00
|
|
|
},
|
2020-01-22 16:36:03 +03:00
|
|
|
"editor.autoIndent": "full"
|
2018-08-13 17:05:01 +03:00
|
|
|
}
|
2019-07-16 15:01:51 +03:00
|
|
|
},
|
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "configure-pipeline",
|
|
|
|
"title": "Configure Pipeline",
|
|
|
|
"category": "Azure Pipelines"
|
2019-09-18 11:00:06 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "browse-pipeline",
|
|
|
|
"title": "Browse Pipeline",
|
|
|
|
"category": "Azure Pipelines"
|
2019-07-16 15:01:51 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"menus": {
|
|
|
|
"explorer/context": [
|
|
|
|
{
|
|
|
|
"command": "configure-pipeline",
|
2019-09-04 10:04:23 +03:00
|
|
|
"group": "Azure Pipelines",
|
|
|
|
"when": "explorerResourceIsFolder == true"
|
2019-07-16 15:01:51 +03:00
|
|
|
}
|
2019-09-18 11:00:06 +03:00
|
|
|
],
|
|
|
|
"commandPalette": [
|
|
|
|
{
|
|
|
|
"command": "browse-pipeline",
|
|
|
|
"when": "never"
|
|
|
|
}
|
2019-07-16 15:01:51 +03:00
|
|
|
]
|
2018-08-23 21:27:54 +03:00
|
|
|
}
|
2018-08-01 18:00:40 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-07-16 15:01:51 +03:00
|
|
|
"compile": "tsc -p ./ && node copyStaticFiles.js",
|
|
|
|
"watch": "node copyStaticFiles.js && tsc -watch -p ./",
|
2018-08-01 18:00:40 +03:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
2018-08-06 17:36:07 +03:00
|
|
|
"test": "npm run compile && node ./node_modules/vscode/bin/test",
|
2019-01-31 16:00:26 +03:00
|
|
|
"unittest": "node_modules/.bin/mocha -u tdd out/unittest/*.js"
|
2018-08-01 18:00:40 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-08-13 09:13:49 +03:00
|
|
|
"@types/fs-extra": "4.0.5",
|
2019-08-01 01:14:29 +03:00
|
|
|
"@types/mocha": "5.2.5",
|
2019-08-13 09:13:49 +03:00
|
|
|
"@types/mustache": "0.8.32",
|
2019-08-01 01:14:29 +03:00
|
|
|
"@types/node": "7.0.43",
|
|
|
|
"@types/q": "1.5.0",
|
|
|
|
"@types/underscore": "1.8.9",
|
2019-07-16 15:01:51 +03:00
|
|
|
"ajv": "^6.9.1",
|
2018-08-22 18:01:06 +03:00
|
|
|
"assert": "1.4.1",
|
|
|
|
"mocha": "5.2.0",
|
2018-09-17 16:57:21 +03:00
|
|
|
"tslint": "5.8.0",
|
2019-07-16 15:01:51 +03:00
|
|
|
"ts-node": "7.0.1",
|
|
|
|
"typescript": "3.3.1",
|
|
|
|
"vscode": "1.1.33",
|
2019-08-13 13:06:18 +03:00
|
|
|
"vscode-azureextensiondev": "0.2.1"
|
2018-08-06 17:36:07 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-07-16 15:01:51 +03:00
|
|
|
"azure-arm-resource": "7.3.0",
|
2019-09-17 20:02:19 +03:00
|
|
|
"azure-arm-website": "5.7.0",
|
2020-01-22 23:10:51 +03:00
|
|
|
"azure-pipelines-language-server": "0.5.10",
|
2019-07-16 15:01:51 +03:00
|
|
|
"mustache": "3.0.1",
|
2018-08-22 18:01:06 +03:00
|
|
|
"q": "1.5.1",
|
2019-08-09 15:33:37 +03:00
|
|
|
"shelljs": "^0.3.0",
|
2019-08-09 14:31:26 +03:00
|
|
|
"simple-git": "1.110.0",
|
2019-08-09 15:33:37 +03:00
|
|
|
"typed-rest-client": "1.0.7",
|
2018-08-22 18:01:06 +03:00
|
|
|
"underscore": "1.9.1",
|
2019-08-09 14:31:26 +03:00
|
|
|
"uuid": "^3.3.2",
|
2019-08-13 13:06:18 +03:00
|
|
|
"vscode-azureextensionui": "0.26.3",
|
2018-09-11 23:08:17 +03:00
|
|
|
"vscode-extension-telemetry": "0.0.18",
|
2018-08-23 22:30:15 +03:00
|
|
|
"vscode-languageclient": "5.0.1",
|
2018-08-06 21:49:28 +03:00
|
|
|
"vscode-nls": "3.2.4",
|
2018-08-23 22:30:15 +03:00
|
|
|
"vscode-uri": "1.0.6"
|
2019-07-16 15:01:51 +03:00
|
|
|
},
|
|
|
|
"extensionDependencies": [
|
|
|
|
"ms-vscode.azure-account"
|
|
|
|
]
|
2018-08-01 18:00:40 +03:00
|
|
|
}
|