Make vscode-bosh a copy of vscode-concourse
This commit is contained in:
68
vscode-extensions/vscode-bosh/package.json
Normal file
68
vscode-extensions/vscode-bosh/package.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"name": "vscode-bosh",
|
||||
"displayName": "Bosh Editor",
|
||||
"description": "Provides validation and content assist for various Bosh configuration files",
|
||||
"icon": "icon.png",
|
||||
"version": "0.0.9",
|
||||
"publisher": "Pivotal",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/spring-projects/sts4.git"
|
||||
},
|
||||
"license": "EPL-1.0",
|
||||
"engines": {
|
||||
"npm": "^3.0.0",
|
||||
"vscode": "^1.8.0"
|
||||
},
|
||||
"categories": [
|
||||
"Languages",
|
||||
"Linters"
|
||||
],
|
||||
"keywords": [
|
||||
"yaml",
|
||||
"bosh"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onLanguage:bosh-deployment-manifest"
|
||||
],
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "bosh-deployment-manifest",
|
||||
"aliases": [
|
||||
"Bosh Deployment Manifest"
|
||||
],
|
||||
"filenamePatterns": [
|
||||
"*deployment*.yml"
|
||||
],
|
||||
"configuration": "./yaml-support/language-configuration.json"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "bosh-deployment-manifest",
|
||||
"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.2.x",
|
||||
"commons-vscode": "^0.0.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vsce": "1.29.0",
|
||||
"typescript": "^2.3.0",
|
||||
"@types/node": "^6.0.68",
|
||||
"vscode": "^1.1.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user