-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "knockoutjs-templates",
"displayName": "KnockoutJS templates",
"description": "Highlight KnockoutJS bindings properly",
"version": "1.0.1",
"author": {"name": "Yaroslav Fedevych", "email": "yaroslav@fedevych.name", "url": "https://github.com/jafd"},
"publisher": "jafd",
"repository": "https://github.com/jafd/vscode-knockoutjs-templates",
"license": "3-Clause BSD License",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "text.html.knockoutjs",
"path": "./syntaxes/knockoutjs.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.inline.knockoutjs": "javascript"
},
"injectTo": [
"text.html",
"text.html.*"
]
},
{
"scopeName": "text.html.knockoutjs.databind",
"path": "./syntaxes/knockoutjs-databind.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.inline.javascript": "javascript"
},
"injectTo": [
"text.html",
"text.html.*"
]
},
{
"scopeName": "text.html.knockoutjs.params",
"path": "./syntaxes/knockoutjs-params.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.inline.javascript": "javascript"
},
"injectTo": [
"text.html",
"text.html.*"
]
}
]
}
}