-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "vim-ale-hello-world",
"version": "1.0.0",
"description": "A Hello World-style vim-ale plugin with lsp linter and fixer",
"main": "bin/hello-lint",
"bin": {
"hello-lint": "bin/hello-lint"
},
"dependencies": {
"vscode-jsonrpc": "^8.1.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-protocol": "^3.17.3",
"vscode-languageserver-textdocument": "^1.0.8",
"vscode-languageserver-types": "^3.17.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/BeyondCodeBootcamp/vim-ale-hello-world.git"
},
"keywords": [
"vim-ale",
"lsp",
"language-server",
"vim"
],
"author": "AJ ONeal <aj@beyondcodebootcamp.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/BeyondCodeBootcamp/vim-ale-hello-world/issues"
},
"homepage": "https://github.com/BeyondCodeBootcamp/vim-ale-hello-world#readme",
"devDependencies": {
"@types/node": "^20.4.5"
}
}