-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "output-colorizer",
"displayName": "Output Colorizer",
"description": "Syntax highlighting for log files",
"version": "0.1.2",
"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": "[email protected]"
},
"contributors": [
{
"name": "Jeff Sloyer",
"email": "[email protected]"
}
],
"contributes": {
"languages": [
{
"id": "Log",
"aliases": [
"log"
],
"extensions": [
".log"
],
"configuration": "./log.configuration.json",
"mimetypes": [
"log",
"text/log",
"text/x-log",
"text/x-code-output",
"x-code-output"
]
}
],
"grammars": [
{
"language": "Log",
"scopeName": "code.log",
"path": "./src/syntaxes/log.tmLanguage"
}
]
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-vinyl-zip": "^1.2.2",
"vscode": "^0.11.0"
},
"galleryBanner": {
"color": "#f2f2f2",
"theme": "light"
},
"icon": "github-assets/icon.png",
"bugs": {
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer/issues"
},
"license": "MIT",
"homepage": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer/blob/master/README.md",
"keywords": [
"IBM",
"log",
"color",
"output"
]
}