-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 2.9 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"$schema": "https://json.schemastore.org/package.json",
"name": "sechub",
"displayName": "SecHub",
"description": "SecHub plugin for VSCode/VSCodium/Eclipse Theia",
"version": "1.0.1",
"license": "MIT",
"icon": "other/images/sechub-logo-big.png",
"galleryBanner": {
"color": "#ffca28",
"theme": "dark"
},
"publisher": "Mercedes-Benz",
"homepage": "https://github.com/mercedes-benz/sechub-plugin-vscode/",
"bugs": {
"url": "https://github.com/mercedes-benz/sechub-plugin-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mercedes-benz/sechub-plugin-vscode/"
},
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:sechubReportView"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "sechubReportView.importReportFile",
"title": "Import SecHub report file",
"icon": "media/sechub-import-report.svg"
},
{
"command": "sechubReportView.openCWEinBrowser",
"title": "CWE"
},
{
"command": "sechubCallHierarchyView.showInEditor",
"title": "Show"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "sechub-view-container",
"title": "SecHub",
"icon": "media/sechub-logo-vscode-styled.svg"
}
]
},
"views": {
"sechub-view-container": [
{
"id": "sechubReportView",
"name": "Report",
"icon": "media/sechub-logo-vscode-styled.svg",
"contextualTitle": "SecHub Report"
},
{
"id": "sechubCallHierarchyView",
"name": "Call Hierarchy",
"icon": "media/sechub-logo-vscode-styled.svg",
"contextualTitle": "SecHub Call Hierarchy"
},
{
"id": "sechubInfoView",
"name": "Info",
"icon": "media/sechub-logo-vscode-styled.svg",
"contextualTitle": "SecHub Call Hierarchy"
}
]
},
"viewsWelcome": [
{
"view": "sechubReportView",
"contents": "No report view data loaded"
}
],
"menus": {
"view/title": [
{
"command": "sechubReportView.importReportFile",
"when": "view == sechubReportView",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "sechubReportView.openCWEinBrowser",
"when": "view == sechubReportView && viewItem == reportItem",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16",
"@types/vscode": "1.77.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.42.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"mocha-explorer-launcher-scripts": "^0.4.0",
"typescript": "^4.9.5"
}
}