Files
spring-tools/vscode-extensions/vscode-application-yaml/package.json
2016-11-14 12:31:13 -08:00

61 lines
1.5 KiB
JSON

{
"name": "vscode-application-yml",
"displayName": "Spring Boot Application YML Support",
"description": "Provides validation and content assist for spring-boot application.yml file",
"icon": "spring_yml.png",
"version": "0.0.1",
"publisher": "kdvolder",
"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": [
"yaml", "springboot"
],
"activationEvents": [
"onLanguage:yaml"
],
"main": "./out/lib/Main",
"contributes": {
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
}
},
"preview": true,
"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"
}
}