-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "AngularMaterial",
"displayName": "Angular Material v10 snippets",
"description": "Angular Material with HTML and TypeScript snippets",
"version": "10.0.0",
"publisher": "hardikpthv",
"license": "MIT",
"icon": "images/angular.png",
"galleryBanner": {
"color": "#3f51b5",
"theme": "dark"
},
"homepage": "https://github.com/hardikpthv/vscode-ng-material-snippets/blob/master/README.md",
"bugs": {
"url": "https://github.com/hardikpthv/vscode-ng-material-snippets/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hardikpthv/vscode-ng-material-snippets.git"
},
"keywords": [
"Angular",
"Angular 10",
"Material",
"Angular Material",
"HTML"
],
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/html.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
}
]
}
}