36 lines
952 B
JSON
36 lines
952 B
JSON
{
|
|
"name": "openhab-vscode-languageserver",
|
|
"displayName": "openHAB VSCode Language Server for Viasual Studio Code",
|
|
"description": "Provides completions and validation of openhab files.",
|
|
"version": "0.1.0",
|
|
"publisher": "openhab",
|
|
"icon": "../openhab.png",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openhab/openhab-vscode.git"
|
|
},
|
|
"dependencies": {
|
|
"eventsource": "^1.0.7",
|
|
"lodash": "^4.17.11",
|
|
"request": "^2.88.0",
|
|
"vscode-languageserver": "6.0.0-next.1"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^23.6.0",
|
|
"standard": "^12.0.1"
|
|
},
|
|
"scripts": {
|
|
"test-unit": "jest --coverage --detectOpenHandles --config=jest-unit.json",
|
|
"test-integration": "jest --coverage --detectOpenHandles --config=jest-integration.json",
|
|
"test": "echo \"Skip test for pipeline configuration for now!\""
|
|
},
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
],
|
|
"globals": [
|
|
"jest"
|
|
]
|
|
}
|
|
}
|