50 строки
1.6 KiB
JSON
50 строки
1.6 KiB
JSON
{
|
|
"name": "@microsoft/compose-language-service",
|
|
"author": "Microsoft Corporation",
|
|
"version": "0.2.1-alpha",
|
|
"publisher": "ms-azuretools",
|
|
"description": "Language service for Docker Compose documents",
|
|
"license": "See LICENSE in the project root for license information.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/compose-language-service"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/microsoft/compose-language-service/issues"
|
|
},
|
|
"homepage": "https://github.com/microsoft/compose-language-service/blob/main/README.md",
|
|
"keywords": [
|
|
"vscode",
|
|
"docker"
|
|
],
|
|
"main": "lib/server.js",
|
|
"bin": {
|
|
"docker-compose-langserver": "./bin/docker-compose-langserver"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint --max-warnings 0 src --ext ts",
|
|
"test": "mocha --file lib/test/global.test.js --recursive lib/test",
|
|
"unittest": "npm test -- --grep /unit/i",
|
|
"package": "npm pack"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.0",
|
|
"@types/chai-as-promised": "^7.1.3",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "16.x",
|
|
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
|
"@typescript-eslint/parser": "^5.7.0",
|
|
"chai": "^4.3.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"eslint": "^8.4.1",
|
|
"mocha": "^10.0.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageserver": "^8.0.2",
|
|
"vscode-languageserver-textdocument": "^1.0.3",
|
|
"yaml": "^2.2.2"
|
|
}
|
|
}
|