This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "coc-erlang_ls",
"version": "0.0.1",
"description": "vim language server extension for coc.nvim",
"keywords": [
"coc.nvim",
"vim",
"erlang",
"lsp"
],
"author": "hyhugh <[email protected]>",
"license": "MIT",
"engines": {
"coc": "^0.0.62"
},
"activationEvents": [
"onLanguage:erlang"
],
"contributes": {
"configuration": {
"title": "erlang_ls language server configuration",
"properties": {
"erlang_ls.erlang_ls_path": {
"type": "string",
"default": "erlang_ls",
"description": "path of erlang_ls"
},
"erlang_ls.port": {
"type": "number",
"default": 19527,
"description": "(Deprecated, as we use stdio to communicate now)Port to communicate with language server."
},
"erlang_ls.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Trace level of vim language server"
}
}
}
},
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"watch": "webpack --watch",
"build": "webpack",
"prepare": "npx npm-run-all clean build"
},
"devDependencies": {
"@types/node": "^12.0.0",
"coc.nvim": "^0.0.72",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"tslib": "^1.9.3",
"socket-retry-connect": "0.0.1",
"vim-language-server": "^1.2.9"
}
}