forked from florianbaer/pb-syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 952 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
{
"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.1.0",
"publisher": "florianbaer",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "pb",
"aliases": [
"PowerBuilder",
"powerbuilder",
"pb"
],
"extensions": [
".sru",
".srd",
".srm",
".srw",
".srs"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "pb",
"scopeName": "source.sru",
"path": "./syntaxes/powerbuilder.tmLanguage.json"
}
]
},
"__metadata": {
"id": "60046c41-c2d7-4405-979b-01b637176fab",
"publisherId": "b04d461b-b0bf-4c37-91f7-5b47b20d263c",
"publisherDisplayName": "Florian Bär"
}
}