forked from hanseltime/vscode-log-output-colorizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "output-colorizer",
"displayName": "Output Colorizer",
"description": "Syntax highlighting for log output",
"version": "0.0.1",
"publisher": "IBM",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer.git"
},
"author": {
"name": "Andrew Trice",
"email": "amtrice@us.ibm.com"
},
"contributors": [
{
"name": "Jeff Sloyer",
"email": "jbsloyer@us.ibm.com"
}
],
"contributes": {
"languages": [{
"id": "log",
"aliases": ["vscode-output-colorizer", "log"],
"extensions": [".log"],
"configuration": "./log.configuration.json",
"mimetypes": ["text/x-code-output"]
}],
"grammars": [{
"language": "log",
"scopeName": "bmcode.log",
"path": "./src/syntaxes/log.tmLanguage"
}]
},
"devDependencies": {
"vscode": "^0.11.0"
},
"galleryBanner": {
"color": "#f2f2f2",
"theme": "light"
},
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer"
},
"keywords": [
"IBM",
"log",
"color",
"output"
]
}