-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.06 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.06 KB
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
{
"name": "x3-code",
"displayName": "Sage Enterprise Management (Sage X3)",
"description": "Syntax Highlight",
"version": "1.1.0",
"publisher": "momente",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Programming Languages"
],
"icon": "logo.png",
"repository": {
"type": "git",
"url": "https://github.com/leom806/x3-code/"
},
"homepage": "https://github.com/leom806/x3-code/master/README.md",
"contributes": {
"languages": [
{
"id": "x3",
"aliases": [
"Sage ERP X3",
"4GL X3 Adonix ",
"x3"
],
"extensions": [
".src"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "x3",
"scopeName": "source.src",
"path": "./syntaxes/x3.tmLanguage.json"
}
],
"snippets": [{
"language": "x3",
"path": "./syntaxes/x3-snippets.json"
}]
},
"scripts": {
"test": "node test.js"
},
"__metadata": {
"id": "7edf069b-cd46-491c-b4ac-03061d50b3c7",
"publisherDisplayName": "Leonardo Momente",
"publisherId": "95cace30-50a8-4b94-85ad-20e0a4915a34"
}
}