-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 2.62 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "casymir-toolkit",
"displayName": "casymir toolkit",
"description": "CASYMIR developing tools",
"version": "0.0.1",
"publisher": "csaar95",
"engines": {
"vscode": "^1.25.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/casymir-toolkit.png",
"galleryBanner": {
"color": "#84b4da",
"theme": "light"
},
"categories": [
"Snippets",
"Extension Packs"
],
"keywords": [
"lua",
"casymir",
"opag",
"sigmatech"
],
"contributes": {
"configurationDefaults": {
"files.associations": {
"*.proc": "sql",
"*.trig": "sql",
"*.ait": "sql",
"*.view": "sql",
"*.tbl": "sql",
"*.lu8": "lua",
"Makefile.*": "makefile"
},
"[sql]": {
"files.encoding": "iso88591"
},
"[lua]": {
"files.autoGuessEncoding": true
},
"Lua.diagnostics.disable": [
"undefined-global"
],
"Lua.runtime.version": "Lua 5.1"
},
"snippets": [
{
"language": "lua",
"path": "./snippets/lua.casy.json"
},
{
"language": "lua",
"path": "./snippets/lua.setup.json"
},
{
"language": "lua",
"path": "./snippets/lua.getopt.json"
},
{
"language": "lua",
"path": "./snippets/lua.cjson.json"
},
{
"language": "lua",
"path": "./snippets/lua.cURL.json"
},
{
"language": "lua",
"path": "./snippets/lua.lfs.json"
},
{
"language": "lua",
"path": "./snippets/lua.opg_system.json"
},
{
"language": "lua",
"path": "./snippets/lua.opg_interpreter.json"
},
{
"language": "sql",
"path": "./snippets/sql.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/csaar95/vscode-casymir-toolkit"
},
"bugs": {
"url": "https://github.com/csaar95/vscode-casymir-toolkit/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/csaar95/vscode-casymir-toolkit/blob/master/README.md",
"extensionPack": [
"csaar95.oregator",
"sumneko.lua",
"keyring.Lua"
],
"badges": [
{
"description": "Visit CASYMIR",
"href": "https://casymir.com",
"url": "https://img.shields.io/badge/CASYMIR-d6066e.svg"
}
]
}