-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 1.82 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
{
"name": "informix4gl",
"displayName": "Informix 4GL",
"description": "Sintaxis para Informix 4GL en Vs Code",
"icon": "images/logo.jpg",
"version": "0.12.0",
"publisher": "CristianRengifo",
"author": {
"name": "Cristian Danilo Rengifo Parra",
"email": "[email protected]"
},
"homepage": "https://github.com/INGCRENGIFO/VsCodeInformix4GL",
"repository": {
"type": "git",
"url": "https://github.com/INGCRENGIFO/VsCodeInformix4GL"
},
"keywords": [
"Informix",
"Informix 4GL",
"4GL"
],
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Programming Languages",
"Keymaps",
"Snippets",
"Other"
],
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:4GL"
],
"contributes": {
"languages": [
{
"id": "4GL",
"aliases": [
"Informix 4GL",
"4GL",
"4gl"
],
"extensions": [
".4gl",
".per",
".spsql"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "4GL",
"scopeName": "source.4GL",
"path": "./syntaxes/4GL.tmLanguage.json"
}
],
"snippets": [
{
"language": "4GL",
"path": "./snippets/snippets.json"
}
],
"configurationDefaults": {
"[4GL]": {
"files.encoding": "cp437",
"files.insertFinalNewline": true
},
"[per]": {
"files.encoding": "cp437",
"files.insertFinalNewline": true
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/vscode": "^1.44.0",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
}
}