-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "better-cpp-syntax",
"displayName": "Better C++ Syntax",
"description": "The bleeding edge of the C++ syntax",
"version": "1.27.1",
"icon": "icon.png",
"scripts": {},
"keywords": [
"C++",
"cpp",
"syntax",
"textmate",
"highlighting",
"coloring",
"color"
],
"engines": {
"vscode": "^1.0.0"
},
"author": {
"name": "Jeff Hykin"
},
"publisher": "jeff-hykin",
"categories": [
"Programming Languages"
],
"repository": {
"url": "https://github.com/jeff-hykin/better-cpp-syntax",
"type": "git"
},
"contributes": {
"grammars": [
{
"language": "cpp",
"scopeName": "source.cpp.embedded.macro",
"path": "./autogenerated/cpp.embedded.macro.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.assembly.cpp": "asm"
}
},
{
"language": "cpp",
"scopeName": "source.cpp",
"path": "./autogenerated/cpp.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.assembly.cpp": "asm",
"meta.preprocessor.macro.contents": "cpp"
}
}
]
},
"devDependencies": {
"chalk": "^2.4.2",
"dictionary-en-us": "^2.1.1",
"lodash": "^4.17.19",
"nspell": "^2.1.2",
"oniguruma": "^7.2.0",
"ovsx": "^0.5.1",
"textmate-bailout": "^1.1.0",
"textmate-tester": "^1.1.9",
"vsce": "^1.103.1"
}
}