This repository has been archived by the owner on Feb 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.99 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
{
"name": "coala",
"displayName": "coala plugin for VS Code",
"description": "Provides a unified interface for linting and fixing all your code, regardless of the programming languages you use.",
"author": "coala devs",
"license": "MIT",
"version": "0.0.20",
"publisher": "coala",
"engines": {
"vscode": "^1.4.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"vscode:coalals": "cp ./coala-langserver.sh ./out",
"vscode:prepublish": "tsc -p ./ && npm run vscode:coalals",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"vscode": "npm run vscode:prepublish && VSCODE=$(which code-insiders || which code || echo echo ERROR: neither the code nor code-insiders vscode executable is installed); USER=dummy-dont-share-vscode-instance $VSCODE --user-data-dir=$PWD/.vscode-dev/user-data --extensionHomePath=$PWD/.vscode-dev/extensions --extensionDevelopmentPath=$PWD $*",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32",
"vsce": "^1.18.0"
},
"dependencies": {
"vscode-languageclient": "^2.4.2-next.12"
},
"contributes": {
"configuration": {
"type": "object",
"title": "coala-ls configuration",
"properties": {
"coalals.maxWorkers": {
"type": "number",
"default": 2,
"description": "Number of max workers per server instance."
},
"coalals.tcpPort": {
"type": "number",
"default": 2087,
"description": "Language Server port in TCP mode."
}
}
}
}
}