-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "tent-snippets-vsc",
"displayName": "Tent CSS Snippets",
"version": "1.0.6",
"description": "Tent CSS markup snippets for VS Code.",
"repository": {
"type": "git",
"url": "https://github.com/sitetent/tent-snippets-vsc.git"
},
"author": "Aaron Mazade <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sitetent/tent-snippets-vsc/issues"
},
"homepage": "https://github.com/sitetent/tent-snippets-vsc#readme",
"publisher": "ulinaaron",
"icon": "icon.png",
"engines": {
"vscode": "^0.10.1"
},
"galleryBanner": {
"color": "#3d9970",
"theme": "dark"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/snippets.json"
},
{
"language": "handlebars",
"path": "./snippets/snippets.json"
},
{
"language": "php",
"path": "./snippets/snippets.json"
},
{
"language": "ejs",
"path": "./snippets/snippets.json"
},
{
"language": "tpl",
"path": "./snippets/snippets.json"
},
{
"language": "erb",
"path": "./snippets/snippets.json"
}
]
}
}