-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.46 KB
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
101
102
103
104
105
106
107
108
109
110
{
"name": "gate-plugin",
"displayName": "Gate plugin",
"description": "Add gate development support to your favorite editor",
"version": "0.2.0",
"author": "Sergiy Samborskiy <salterok@gmail.com>",
"publisher": "SergiySamborskiy",
"repository": {
"type": "git",
"url": "https://github.com/salterok/gate-plugin.git"
},
"engines": {
"vscode": "^1.19.0"
},
"license": "MIT",
"icon": "icon.png",
"scripts": {
"build-parser": "cmd /C build-parser.cmd",
"vscode:prepublish": "npm install & npm run compile",
"compile": "build-parser.cmd & tsc -p ./ --sourceMap false",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.8565fd2b",
"lodash": "^4.17.10"
},
"devDependencies": {
"antlr4ts-cli": "^0.4.0-canary.37504efa",
"@types/lodash": "^4.14.116",
"@types/node": "^9.4.6",
"generator-code": "^1.1.25",
"typescript": "^2.7.2",
"vscode": "^1.1.10"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:jape"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"type": "object",
"title": "GATE plugin",
"properties": {
"gate-plugin.unstable": {
"type": "object",
"properties": {
"loadPipelines": {
"enum": [
true,
false
],
"default": false
},
"enableCompletions": {
"enum": [
true,
false
],
"default": false
},
"enableSymbols": {
"enum": [
true,
false
],
"default": false
},
"enableDifinitions": {
"enum": [
true,
false
],
"default": false
}
}
}
}
}
],
"languages": [
{
"id": "jape",
"aliases": [
"Jape",
"jape"
],
"extensions": [
".jape"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jape",
"scopeName": "source.jape",
"path": "./syntaxes/jape.tmLanguage.json",
"embeddedLanguages": {
"source.java": "java"
}
}
]
}
}