-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 2.45 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ostis",
"description": "Support of knowledge base source edit for OSTIS projects.",
"version": "0.3.2",
"publisher": "deniskoronchik",
"displayName": "OSTIS Knowledge base source support",
"license": "MIT",
"icon": "images/ostis-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/ostis-dev/vs-code-ostis.git"
},
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Languages",
"Snippets"
],
"keywords": [
"ostis",
"knowledge base"
],
"activationEvents": [
"*"
],
"main": "./out/ostisMain",
"contributes": {
"languages": [
{
"id": "scs",
"aliases": [
"scs",
"scsi"
],
"extensions": [
".scs",
".scsi"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "scs",
"scopeName": "source.scs",
"path": "./syntaxes/scs.tmLanguage.json"
}
],
"snippets": [
{
"language": "scs",
"path": "./snippets/scs.json"
}
],
"configurationDefaults": {
"[scs]": {
"editor.quickSuggestions": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.trimAutoWhitespace": true,
"editor.autoClosingBrackets": true
}
}
},
"configuration": {
"type": "object",
"title": "OSTIS extension configuration",
"properties": {
"scsLanguageServer.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
},
"dependencies": {
"antlr4": "^4.7.0",
"antlr4ts": "^0.4.1-alpha.0",
"pegjs": "^0.10.0",
"vscode-languageclient": "^3.2.0",
"vscode-languageserver": "^3.2.0"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"antlr4ts-cli": "^0.4.0-alpha.4",
"cpx": "^1.5.0",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.1.0"
},
"scripts": {
"vscode:prepublish": "antlr4 -Dlanguage=JavaScript src/scs/syntax/scs.g4 && cpx \"src/**/*.js\" out && tsc -p ./",
"compile": "antlr4 -Dlanguage=JavaScript src/scs/syntax/scs.g4 && cpx \"src/**/*.js\" out && tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
}
}