-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 887 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
{
"name": "ndjson-colorizer",
"displayName": "NDJSON Colorizer",
"description": "colorizes NDJSON (Newline Delimted JSON) files",
"version": "1.0.0",
"publisher": "buster",
"license": "ISC",
"icon": "images/ndjson.png",
"engines": {
"vscode": "^1.20.0"
},
"categories": ["Languages"],
"contributes": {
"languages": [
{
"id": "ndjson",
"aliases": ["NDJSON", "ndjson"],
"extensions": [".ndjson"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ndjson",
"scopeName": "source.ndjson",
"path": "./syntaxes/ndjson.tmLanguage.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/busterc/vscode-ndjson-colorizer"
},
"bugs": {
"url": "https://github.com/busterc/vscode-ndjson-colorizer/issues"
}
}