forked from natewallace/angular2-inline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "angular2-inline",
"description": "Visual Studio Code language extension for javascript/typescript files that use Angular2.",
"version": "0.0.17",
"publisher": "natewallace",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/natewallace/angular2-inline.git"
},
"engines": {
"vscode": "^1.7.1"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#99C3D7"
},
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:javascript"
],
"main": "./src/main",
"contributes": {
"grammars": [
{
"scopeName": "template.ng",
"path": "./syntaxes/template.ng.json",
"injectTo": [
"source.js",
"source.ts"
],
"embeddedLanguages": {
"meta.embedded.block.html": "html"
}
},
{
"scopeName": "styles.ng",
"path": "./syntaxes/styles.ng.json",
"injectTo": [
"source.js",
"source.ts"
],
"embeddedLanguages": {
"meta.embedded.block.css": "css"
}
},
{
"scopeName": "source.ng.ts",
"path": "./syntaxes/source.ng.ts.json"
},
{
"scopeName": "source.ng.css",
"path": "./syntaxes/source.ng.css.json"
}
]
}
}