forked from shanoor/vscode-nginx
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "vscode-nginx",
"displayName": "NGINX Configuration",
"description": "Syntax highlighting for NGINX configuration files",
"version": "0.7.2",
"publisher": "william-voyek",
"engines": {
"vscode": "^1.32.0"
},
"repository": {
"type": "GitHub",
"url": "https://github.com/william-voyek/vscode-nginx"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "nginx",
"aliases": [
"NGINX Conf",
"nginx"
],
"extensions": [
"nginx.conf",
".conf",
".nginx"
],
"configuration": "./nginx.configuration.json"
}
],
"grammars": [
{
"language": "nginx",
"scopeName": "source.nginx",
"path": "./syntaxes/nginx.tmLanguage.json"
}
]
},
"icon": "nginx_logo.png"
}