Files
spring-tools/vscode-extensions/vscode-boot-properties/package.json
2017-01-25 10:39:04 -08:00

50 lines
1.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.0.1",
"publisher": "Pivotal",
"repository": {
"type": "git",
"url": "https://github.com/spring-projects/sts4.git"
},
"license": "EPL-1.0",
"engines": {
"npm": "^3.0.0",
"vscode": "^1.5.0"
},
"categories": [
"Languages",
"Linters"
],
"keywords": [
"java-properties", "spring-boot", "application-properties", "application-yaml"
],
"activationEvents": [
"onLanguage:ini",
"onLanguage:java-properties",
"onLanguage:properties",
"onLanguage:yaml"
],
"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": "2.5.x",
"commons-vscode": "^0.0.1"
},
"devDependencies": {
"vsce": "^1.17.0",
"typescript": "^2.0.x",
"@types/node": "^6.0.40",
"vscode": "^1.0.0"
}
}