-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.44 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
{
"name": "cfg-language-features",
"displayName": "LibConfig",
"description": "C++ Configuration Library Syntax Highlighter and Refactoring Agent",
"version": "1.0.0",
"publisher": "wegman12",
"repository": {
"type": "git",
"url": "https://github.com/wegman12/Libconfig-VsCode-Support"
},
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:libconfig"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "libconfig",
"aliases": [
"LibConfig",
"libconfig"
],
"extensions": [
".cfg"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "libconfig",
"scopeName": "source.libconfig",
"path": "./syntaxes/libconfig.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "LibConfig Configuration",
"properties": {
"libConfigServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"libConfigServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
}
}