forked from mrmlnc/vscode-json5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 849 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
{
"name": "vscode-json5",
"displayName": "JSON5 syntax",
"description": "Adds syntax highlighting of JSON5 files",
"version": "1.0.1",
"publisher": "mrmlnc",
"license": "MIT",
"engines": {
"vscode": "^1.3.0"
},
"icon": "icon.png",
"homepage": "https://github.com/mrmlnc/vscode-json5/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mrmlnc/vscode-json5"
},
"keywords": [
"json5",
"syntax",
"highlight"
],
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "json5",
"aliases": ["JSON5", "json5"],
"extensions": [".json5"],
"configuration": "./json5.configuration.json"
}],
"grammars": [{
"language": "json5",
"scopeName": "source.json5",
"path": "./syntaxes/json5.json"
}]
}
}