89 lines
2.3 KiB
JSON
89 lines
2.3 KiB
JSON
{
|
|
"name": "vscode-boot-properties",
|
|
"displayName": "Spring Boot Application Properties Support",
|
|
"description": "Provides validation and content assist for Spring Boot application.properties and application.yml file",
|
|
"icon": "spring-boot-logo.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": [
|
|
"java-properties",
|
|
"spring-boot",
|
|
"application-properties",
|
|
"application-yaml"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:spring-boot-properties",
|
|
"onLanguage:spring-boot-properties-yaml"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "spring-boot-properties-yaml",
|
|
"aliases": [
|
|
"Spring Boot Properties Yaml"
|
|
],
|
|
"filenamePatterns": [
|
|
"application*.yml",
|
|
"bootstrap*.yml"
|
|
],
|
|
"configuration": "./yaml-support/language-configuration.json"
|
|
},
|
|
{
|
|
"id": "spring-boot-properties",
|
|
"aliases": [
|
|
"Spring Boot Properties"
|
|
],
|
|
"filenamePatterns": [
|
|
"application*.properties",
|
|
"bootstrap*.yml"
|
|
],
|
|
"configuration": "./properties-support/language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "spring-boot-properties-yaml",
|
|
"scopeName": "source.yaml",
|
|
"path": "./yaml-support/yaml.tmLanguage"
|
|
},
|
|
{
|
|
"language": "spring-boot-properties",
|
|
"scopeName": "source.java-properties",
|
|
"path": "./properties-support/java-properties.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"
|
|
}
|
|
}
|