-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.08 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
{
"name": "vscode-hugo-snippets",
"displayName": "Hugo Snippets",
"description": "Hugo Snippets for VS Code",
"version": "0.4.1",
"license": "MIT",
"publisher": "fivethree",
"icon": "icons/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/fivethree-team/vscode-hugo-snippets.git"
},
"bugs": {
"url": "https://github.com/fivethree-team/vscode-hugo-snippets/issues"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Snippets"
],
"keywords": [
"hugo",
"snippets"
],
"contributes": {
"snippets": [
{
"language": "markdown",
"path": "./snippets/hugo-markdown.json"
},
{
"language": "html",
"path": "./snippets/hugo-functions.json"
},
{
"language": "html",
"path": "./snippets/hugo-templates.json"
},
{
"language": "html",
"path": "./snippets/hugo-variables.json"
}
]
},
"scripts": {
"vscode:publish": "vsce publish",
"version": "conventional-changelog -p angular -i ./CHANGELOG.md -s"
}
}