-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "coc-phpactor",
"version": "1.0.3",
"description": "Phpactor PHP Language Server extension for coc.nvim",
"main": "lib/extension.js",
"publisher": "dantleech",
"engines": {
"coc": "^0.0.66"
},
"keywords": [
"coc.nvim",
"php",
"phpactor"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc -p tsconfig.json",
"prepare": "yarn clean && yarn build"
},
"activationEvents": [
"onLanguage:php"
],
"contributes": {
"configuration": {
"title": "phpactor config",
"properties": {
"phpactor.path": {
"type": "string",
"default": "phpactor",
"description": "phpactor bin path"
},
"phpactor.revealOutputChannelOn": {
"type": "string",
"enum": [
"info",
"warn",
"error",
"never"
],
"default": "never",
"description": "Specifies message severity on which the output channel will be revealed."
},
"phpactor.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Trace level for Phpactor"
},
"phpactor.enable": {
"type": "boolean",
"default": true,
"description": "enable phpactor language server"
},
"phpactor.config": {
"type": "object",
"default": {},
"description": "standard phpactor configuration"
}
}
}
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@chemzqm/tslint-config": "^1.0.18",
"@types/node": "^11.13.10",
"coc.nvim": "^0.0.77",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.3",
"tslint": "^5.16.0",
"typescript": "^3.4.4",
"vscode-languageserver-protocol": "^3.15.0-next.4",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"dependencies": {
"tslib": "^2.0.0"
}
}