-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 1.45 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
{
"name": "better-go-syntax",
"displayName": "Better Go Syntax",
"description": "A syntax improvement for go lang",
"icon": "icon.png",
"version": "2.0.0",
"scripts": {
"build": "ruby source/generate.rb",
"publish": "npm run build && vsce publish",
"postinstall": "bundle install"
},
"keywords": [
"syntax",
"textmate",
"highlighting",
"coloring",
"color",
"go"
],
"engines": {
"vscode": "^1.0.0"
},
"author": {
"name": "Jeff Hykin"
},
"publisher": "jeff-hykin",
"contributes": {
"languages": [
{
"id": "go",
"aliases": [
"go lang",
"Go (simplified)",
"go (simplified)"
],
"extensions": [
".go"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "go",
"scopeName": "source.go",
"path": "./autogenerated/go.tmLanguage.json"
}
]
},
"categories": [
"Programming Languages"
],
"repository": {
"url": "https://github.com/jeff-hykin/better-go-syntax",
"type": "git"
},
"devDependencies": {
"chalk": "^2.4.2",
"dictionary-en-us": "^2.1.1",
"lodash": "^4.17.19",
"nspell": "^2.1.2",
"oniguruma": "^7.2.0",
"textmate-bailout": "^1.1.0",
"vsce": "^1.99.0",
"yargs": "^17.5.1",
"ovsx": "^0.5.1",
"textmate-tester": "^1.1.9"
}
}