-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.19 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
{
"name": "rpg",
"displayName": "RPG",
"description": "RPG for IBM i",
"version": "0.2.1",
"icon": "rpg.jpg",
"publisher": "NielsLiisberg",
"readme": "README.md",
"author": {
"name": "Niels Liisberg"
},
"engines": {
"vscode": "^1.4.0"
},
"keywords": [
"RPG",
"RPGLE",
"IBMI",
"AS/400",
"ISERIES"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "rpg",
"aliases": [
"RPG",
"rpg"
],
"extensions": [
".rpg",
".aspx",
".asmx",
".rpgle",
".sqlrpgle"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rpg",
"scopeName": "source.rpg",
"path": "./syntaxes/rpg.tmLanguage.json"
}
],
"snippets": [
{
"language": "rpg",
"path": "./snippets.json"
}
]
},
"__metadata": {
"id": "82248b3f-e978-444b-bd4b-40f5935691aa",
"publisherId": "5e44d29a-ac10-460d-ade0-8ae845cea985",
"publisherDisplayName": "Niels Liisberg"
},
"repository": {
"type": "git",
"url": "https://github.com/NielsLiisberg/RPG-for-VSCode"
},
"homepage": "https://github.com/NielsLiisberg/RPG-for-VSCode/blob/master/README.md"
}