forked from hanseltime/vscode-log-output-colorizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.52 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "output-colorizer",
"displayName": "Output Colorizer",
"description": "Syntax highlighting for log files",
"version": "0.1.2",
"publisher": "IBM",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/IBM-Bluemix/vscode-log-output-colorizer.git"
},
"author": {
"name": "Andrew Trice",
"email": "[email protected]"
},
"main": "./client/out/extension",
"activationEvents": [
"onLanguage:Log"
],
"scripts": {
"build": "tsc --build client",
"watch": "cd client && yarn watch"
},
"contributors": [
{
"name": "Jeff Sloyer",
"email": "[email protected]"
}
],
"contributes": {
"configuration": {
"title": "Output Colorizer",
"properties": {
"outputcolorizer.semantics": {
"description": "An array of objects that declares how to scan the output for semantic provisions",
"type": "array",
"default": [],
"scope": "application"
}
}
},
"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": "./syntaxes/log.tmLanguage"
}
]
},
"devDependencies": {
"@types/node": "^16.4.13",
"gulp": "^3.9.1",
"gulp-vinyl-zip": "^1.2.2",
"vscode": "^1.1.37"
},
"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"
]
}