-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
39 lines (39 loc) · 951 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
35
36
37
38
39
{
"name": "vscode-nginx",
"displayName": "nginx.conf",
"description": "Syntax highlighter for nginx conf files.",
"version": "0.6.0",
"publisher": "shanoor",
"engines": {
"vscode": "^1.0.0"
},
"repository": {
"type": "GitHub",
"url": "https://github.com/shanoor/vscode-nginx"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "NGINX",
"aliases": [
"NGINX"
],
"extensions": [
".conf"
],
"configuration": "./nginx.configuration.json"
}
],
"grammars": [
{
"language": "NGINX",
"scopeName": "source.nginx",
"path": "./syntaxes/nginx.tmLanguage"
}
]
},
"icon": "nginx_logo.png"
}