-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1018 Bytes
/
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
{
"name": "pb-syntax",
"repository": {
"type": "git",
"url": "https://github.com/florianbaer/pb-syntax.git"
},
"displayName": "powerbuilder syntax",
"description": "Syntax highlighting for powerbuilder source.",
"version": "0.2.1",
"publisher": "florianbaer",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "pb",
"aliases": [
"PowerBuilder",
"powerbuilder",
"pb"
],
"extensions": [
".sru",
".srd",
".srm",
".srw",
".srs",
".srf",
".sra",
".srp",
".srj",
".srq"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "pb",
"scopeName": "source.sru",
"path": "./syntaxes/powerbuilder.tmLanguage.json"
}
]
},
"__metadata": {
"id": "a26a25ce-452a-4867-8210-6e510adf7d39",
"publisherId": "b04d461b-b0bf-4c37-91f7-5b47b20d263c",
"publisherDisplayName": "Florian Bär"
}
}