-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
54
55
{
"name": "bridgetown-liquid-snippets",
"displayName": "Bridgetown Liquid Snippets",
"description": "Bridgetownrb liquid snippets",
"version": "0.0.4-SNAPSHOT",
"icon": "btrb.png",
"repository": {
"type": "git",
"url": "https://github.com/bt-rb/bridgetown-liquid-snippets"
},
"publisher": "andrewmcodes",
"scripts": {
"deploy": "vsce publish --yarn",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version"
},
"devDependencies": {
"standard-version": "^9.0.0",
"vsce": "^1.81.1"
},
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "liquid",
"path": "./snippets/comments.json"
},
{
"language": "liquid",
"path": "./snippets/control_flows.json"
},
{
"language": "liquid",
"path": "./snippets/filters.json"
},
{
"language": "liquid",
"path": "./snippets/general.json"
},
{
"language": "liquid",
"path": "./snippets/tags.json"
},
{
"language": "liquid",
"path": "./snippets/variables.json"
}
]
}
}