-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 977 Bytes
/
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
{
"name": "VS-code-drupal",
"displayName": "Drupal Syntax Highlighting",
"description": "Provides syntax highlighting support for Drupal specific file types, such as .module, .inc, .theme etc.",
"version": "0.0.12",
"engines": {
"vscode": "1.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/mastazi/VS-code-drupal"
},
"license": "SEE LICENSE IN LICENSE.txt",
"icon": "images/icon.svg",
"categories": [
"Other"
],
"publisher": "marcostazi",
"extensionDependencies": [
"php"
],
"contributes": {
"languages": [{
"id": "php",
"aliases": [ "PHP", "php" ],
"extensions": [ ".engine", ".theme", ".install", ".inc", ".make", ".module", ".profile", ".test" ]
},
{
"id": "ini",
"aliases": ["Ini", "ini"],
"extensions": [".info"]
}]
}
}