azure-pipelines-vscode/package.json

85 строки
2.4 KiB
JSON
Исходник Обычный вид История

2018-08-01 18:00:40 +03:00
{
2018-08-06 22:25:46 +03:00
"name": "yaml-rocket-ship",
2018-08-01 18:00:40 +03:00
"displayName": "YAML Rocket Ship",
"description": "TODO description",
2018-08-08 17:18:48 +03:00
"version": "1.139.0",
2018-08-01 18:00:40 +03:00
"publisher": "nc-rocket",
"repository": "https://github.com/Microsoft/pipelines-vscode",
2018-08-06 19:44:28 +03:00
"icon": "assets/ymlfile.png",
2018-08-06 21:49:28 +03:00
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:azure-pipelines"
],
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": [
".vsts-ci.yml"
],
"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"
}
],
"yamlValidation": [
{
"fileMatch": "*.yml",
2018-08-06 22:29:03 +03:00
"url": "./local-schema.json"
2018-08-06 17:36:07 +03:00
}
2018-08-06 22:24:45 +03:00
],
"configuration": {
"title": "My extension configuration - TODO: Rename",
"properties": {
"yaml.validate": {
"type": "boolean",
"default": true,
"description": "Enable/disable validation feature"
}
}
2018-08-10 17:34:05 +03:00
},
"snippets": [
{
"language": "azure-pipelines",
"path": "./snippets/ci-snippets.json"
}
]
2018-08-01 18:00:40 +03:00
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"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",
"removeschemastore": "node remove-schema-store-settings.js"
2018-08-01 18:00:40 +03:00
},
"devDependencies": {
2018-08-06 19:40:23 +03:00
"typescript": "2.6.1",
2018-08-06 20:07:15 +03:00
"vscode": "1.1.18",
2018-08-06 22:21:48 +03:00
"tslint": "5.8.0",
2018-08-06 19:40:23 +03:00
"ts-node": "3.3.0",
"@types/node": "7.0.43",
"@types/mocha": "2.2.42"
2018-08-06 17:36:07 +03:00
},
"dependencies": {
2018-08-06 21:49:28 +03:00
"vscode-languageclient": "4.4.0",
"vscode-nls": "3.2.4",
"vscode-uri": "1.0.5",
2018-08-06 17:36:07 +03:00
"yaml-language-server": "0.0.17"
2018-08-01 18:00:40 +03:00
}
}