-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 1.77 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
{
"name": "oregator",
"displayName": "oregator",
"description": "language support for OREGATOR",
"version": "1.0.8",
"publisher": "csaar95",
"engines": {
"vscode": "^1.19.0"
},
"author": {
"name": "Christian Saar",
"url": "https://github.com/csaar95/"
},
"maintainers": [
{
"name": "SIGMATECH Informatik GmbH",
"url": "https://www.sigmatech.de/"
},
{
"name": "OPAG Informatik AG",
"url": "https://opag.ch/"
}
],
"license": "MIT",
"icon": "images/oregator128.png",
"galleryBanner": {
"color": "#84b4da",
"theme": "light"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"oregator",
"casymir",
"opag",
"sigmatech",
"report"
],
"contributes": {
"languages": [
{
"id": "oregator",
"aliases": [
"OREGATOR",
"oregator"
],
"extensions": [
".oregator",
".ry",
".inc",
".dep",
".def",
".del",
".dew"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "oregator",
"scopeName": "source.oregator",
"path": "./syntaxes/oregator.tmLanguage.json"
}
],
"configurationDefaults": {
"[oregator]": {
"files.encoding": "iso88591"
}
},
"snippets": [
{
"language": "oregator",
"path": "./snippets/oregator.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/csaar95/vscode-oregator"
},
"bugs": {
"url": "https://github.com/csaar95/vscode-oregator/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/csaar95/vscode-oregator/blob/master/README.md",
"__metadata": {
"id": "0c7b130c-f408-440d-8f99-d31bb79ceaf2",
"publisherDisplayName": "SIGMATECH Informatik",
"publisherId": "11d67e28-6784-4570-9550-eb8018e46933"
}
}