-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
162 lines (162 loc) · 4.11 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "gitguardian",
"repository": "https://github.com/GitGuardian/gitguardian-vscode",
"displayName": "GitGuardian - Secrets Security",
"description": "A safety net to help developers safeguard their sensitive information (passwords, API key, tokens, ..) from accidental leaks in their code",
"icon": "images/icon.png",
"version": "0.5.0",
"publisher": "gitguardian-secret-security",
"engines": {
"vscode": "^1.81.0"
},
"galleryBanner": {
"color": "#081736",
"theme": "dark"
},
"categories": [
"Other"
],
"keywords": [
"security",
"secrets",
"password",
"scan",
"devsecops"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "GitGuardian",
"properties": {
"gitguardian.apiUrl": {
"type": "string",
"default": "",
"markdownDescription": "You can override the value here for On Premise installations"
},
"gitguardian.allowSelfSigned": {
"type": "boolean",
"default": false,
"markdownDescription": "Allow Self Signed Certificates"
}
}
},
"commands": [
{
"command": "gitguardian.quota",
"title": "gitguardian: Show quota"
},
{
"command": "gitguardian.ignore",
"title": "gitguardian: Ignore last found incidents"
},
{
"command": "gitguardian.authenticate",
"title": "gitguardian: Authenticate"
},
{
"command": "gitguardian.logout",
"title": "gitguardian: logout"
},
{
"command": "gitguardian.updateAuthenticationStatus",
"title": "gitguardian: Update authentication status"
},
{
"command": "gitguardian.showOutput",
"title": "Show Output"
},
{
"command": "gitguardian.openSidebar",
"title": "Open Sidebar"
},
{
"command": "gitguardian.openProblems",
"title": "Open Problems"
},
{
"command": "gitguardian.refreshQuota",
"title": "Refresh Quota",
"icon": {
"light": "images/refresh-light.svg",
"dark": "images/refresh-dark.svg"
}
}
],
"viewsContainers": {
"activitybar": [
{
"id": "gitguardian",
"title": "GitGuardian",
"icon": "./images/gitguardian.svg"
}
]
},
"views": {
"gitguardian": [
{
"type": "webview",
"id": "gitguardianView",
"name": "gitguardian"
},
{
"type": "webview",
"id": "gitguardianRemediationMessageView",
"name": "remediation message",
"collapsed": true,
"when": "false"
},
{
"type": "webview",
"id": "gitguardianQuotaView",
"name": "quota",
"collapsed": true,
"when": "isAuthenticated == true"
}
]
},
"viewsWelcome": [
{
"view": "gitguardianView",
"contents": "To get started with GitGuardian, please authenticate.\n[Authenticate](command:gitguardian.authenticate)"
}
],
"menus": {
"view/title": [
{
"command": "gitguardian.refreshQuota",
"group": "navigation",
"when": "view == gitguardianQuotaView"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn 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": "20.2.5",
"@types/simple-mock": "^0.8.6",
"@types/vscode": "^1.81.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.41.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"simple-mock": "^0.8.0",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.7.7"
}
}