89 lines
2.2 KiB
JSON
89 lines
2.2 KiB
JSON
{
|
|
"name": "vscode-concourse",
|
|
"displayName": "Concourse CI Pipeline Editor",
|
|
"description": "Provides validation and content assist for Concourse CI pipeline and task configuration yml files",
|
|
"icon": "icon.png",
|
|
"version": "0.1.3",
|
|
"publisher": "Pivotal",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/spring-projects/sts4.git"
|
|
},
|
|
"license": "EPL-1.0",
|
|
"engines": {
|
|
"npm": "^3.0.0",
|
|
"vscode": "^1.15.0"
|
|
},
|
|
"categories": [
|
|
"Languages",
|
|
"Linters"
|
|
],
|
|
"keywords": [
|
|
"yaml",
|
|
"concourse",
|
|
"pipeline.yml"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:concourse-pipeline-yaml",
|
|
"onLanguage:concourse-task-yaml"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "concourse-pipeline-yaml",
|
|
"aliases": [
|
|
"Concourse Pipeline"
|
|
],
|
|
"filenamePatterns": [
|
|
"*pipeline*.yml"
|
|
],
|
|
"firstLine": "^#(\\s)*pipeline(\\s)*",
|
|
"configuration": "./yaml-support/language-configuration.json"
|
|
},
|
|
{
|
|
"id": "concourse-task-yaml",
|
|
"aliases": [
|
|
"Concourse Task"
|
|
],
|
|
"filenamePatterns": [
|
|
"*task.yml",
|
|
"**/tasks/*.yml"
|
|
],
|
|
"firstLine": "^#(\\s)*task(\\s)*",
|
|
"configuration": "./yaml-support/language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "concourse-pipeline-yaml",
|
|
"scopeName": "source.yaml",
|
|
"path": "./yaml-support/yaml.tmLanguage"
|
|
},
|
|
{
|
|
"language": "concourse-task-yaml",
|
|
"scopeName": "source.yaml",
|
|
"path": "./yaml-support/yaml.tmLanguage"
|
|
}
|
|
]
|
|
},
|
|
"main": "./out/lib/Main",
|
|
"scripts": {
|
|
"prepublish": "tsc -p .",
|
|
"clean": "rm -fr node_modules out *.vsix",
|
|
"compile": "tsc -watch -p ./",
|
|
"preinstall": "./scripts/preinstall.sh",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"vsce-package": "vsce package"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "^3.4.2",
|
|
"commons-vscode": "0.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"vsce": "^1.30.0",
|
|
"typescript": "^2.3.0",
|
|
"@types/node": "^6.0.68",
|
|
"vscode": "^1.1.5"
|
|
}
|
|
}
|