{ "name": "vscode-boot-java", "displayName": "Spring Boot Java Support", "description": "Provides validation, content assist, and more working with Spring Boot applications Java code", "icon": "spring-boot-logo.png", "version": "0.1.4", "publisher": "Pivotal", "repository": { "type": "git", "url": "https://github.com/spring-projects/sts4.git" }, "license": "EPL-1.0", "engines": { "npm": "^3.0.0", "vscode": "^1.19.0" }, "categories": [ "Languages", "Linters" ], "keywords": [ "java", "spring-boot" ], "activationEvents": [ "onLanguage:java" ], "contributes": { "configuration": { "type": "object", "title": "Boot-Java Configuration", "properties": { "boot-java.boot-hints.on": { "type": "boolean", "default": true, "description": "Enable/Disable Spring running Boot application live hints decorators in the source code" } } } }, "main": "./out/lib/Main", "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "watch": "tsc -watch -p ./", "clean": "rm -fr node_modules out *.vsix package-lock.json", "preinstall": "./scripts/preinstall.sh", "postinstall": "node ./node_modules/vscode/bin/install", "vsce-package": "vsce package" }, "dependencies": { "commons-vscode": "file:../commons-vscode/commons-vscode-0.1.4.tgz", "vscode-languageclient": "^3.4.5" }, "devDependencies": { "vsce": "^1.36.1", "typescript": "2.6.1", "@types/node": "^7.0.43", "vscode": "^1.1.10" } }