forked from HubSpot/hubspot-cms-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.83 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": "hubl",
"displayName": "HubL Language Extension",
"description": "HubL Visual Studio Code Language Extension",
"version": "0.0.2",
"publisher": "WilliamSpiro",
"engines": {
"vscode": "^1.30.0"
},
"repository": {
"type": "git",
"url": "https://github.com/williamspiro/HubL-Language-Extension"
},
"homepage": "https://github.com/williamspiro/HubL-Language-Extension/blob/master/README.md",
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/auto_gen/hubl_filters.json"
},
{
"language": "html",
"path": "./snippets/auto_gen/hubl_functions.json"
},
{
"language": "html",
"path": "./snippets/auto_gen/hubl_tags.json"
},
{
"language": "html",
"path": "./snippets/auto_gen/hubl_expTests.json"
},
{
"language": "html",
"path": "./snippets/man_gen/hubl_extras.json"
},
{
"language": "html",
"path": "./snippets/man_gen/hubl_request_variables.json"
},
{
"language": "html",
"path": "./snippets/man_gen/hubl_blog_variables.json"
},
{
"language": "html",
"path": "./snippets/man_gen/hubl_general_variables.json"
}
],
"languages": [
{
"id": "html",
"extensions": [
".html"
],
"configuration": "./langconfig/language-configuration.json"
}
]
}
}