forked from iambibhas/vscode-django-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "django-html",
"version": "1.2.0",
"publisher": "bibhasdn",
"author": {
"name": "Bibhas Debnath"
},
"license": "MIT",
"icon": "icon.png",
"description": "Django template language support for Visual Studio Code",
"displayName": "Django Template",
"repository": {
"type": "git",
"url": "https://github.com/iambibhas/vscode-django-template.git"
},
"bugs": {
"url": "https://github.com/iambibhas/vscode-django-template/issues"
},
"categories": [
"Languages",
"Snippets",
"Linters"
],
"engines": {
"vscode": "^1.0.0"
},
"contributes": {
"languages": [
{
"id": "html",
"aliases": [
"Django Template",
"HTML"
],
"extensions": [".html", ".htm"],
"configuration": "./django-html.configuration.json"
}
],
"grammars": [
{
"language": "html",
"scopeName": "text.html.django",
"path": "./syntaxes/django-html.json"
}
],
"snippets": [
{
"language": "html",
"scopeName": "text.html.django",
"path": "./snippets/django-snippets.json"
}
]
}
}