-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
{
"name": "better-c-syntax",
"displayName": "Better C Syntax",
"description": "The bleeding edge of C syntax",
"icon": "icon.png",
"version": "1.13.2",
"scripts": {
"test": ""
},
"keywords": [
"c",
"syntax",
"textmate",
"highlighting",
"coloring",
"color"
],
"engines": {
"vscode": "^1.0.0"
},
"author": {
"name": "Jeff Hykin"
},
"publisher": "jeff-hykin",
"contributes": {
"grammars": [
{
"language": "c",
"scopeName": "source.c",
"path": "./autogenerated/c.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.assembly.c": "asm"
}
}
]
},
"categories": [
"Programming Languages"
],
"repository": {
"url": "https://github.com/jeff-hykin/better-c-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",
"textmate-tester": "^1.1.2",
"yargs": "^17.5.1",
"vsce": "^1.99.0"
},
"dependencies": {
}
}