-
Notifications
You must be signed in to change notification settings - Fork 30
/
vss-extension.json
118 lines (118 loc) · 3.11 KB
/
vss-extension.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
{
"manifestVersion": 1,
"id": "snyk-security-scan",
"name": "Snyk Security Scan",
"version": "0.0.0",
"publisher": "Snyk",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Snyk scan for open source vulnerabilities",
"categories": ["Azure Pipelines"],
"icons": {
"default": "images/extension-icon.png"
},
"scopes": ["vso.build_execute"],
"files": [
{
"path": "snykTask"
},
{
"path": "scripts/dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "images",
"addressable": true,
"packagePath": "img"
},
{
"path": "ui/snyk-report-tab.html",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
},
{
"path": "LICENSE",
"addressable": true
}
],
"content": {
"details": {
"path": "marketplace.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"home": {
"uri": "https://snyk.io/"
},
"support": {
"uri": "https://support.snyk.io/"
},
"privacypolicy": {
"uri": "https://snyk.io/policies/privacy/"
},
"license": {
"uri": "./LICENSE"
}
},
"contributions": [
{
"id": "custom-build-release-task",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "snykTask"
}
},
{
"id": "snyk-report-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "Snyk Report",
"targets": ["ms.vss-build-web.build-results-view"],
"properties": {
"name": "Snyk Report",
"uri": "ui/snyk-report-tab.html"
}
},
{
"id": "snyk-service-connection-endpoint",
"description": "Snyk.io",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": ["ms.vss-endpoint.endpoint-types"],
"properties": {
"name": "SnykAuth",
"displayName": "Snyk Authentication",
"url": "https://snyk.io/",
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "apitoken",
"name": "Snyk API Token",
"description": "Log into your <a href=\"https://snyk.io/account/\">Snyk account</a> to get either your <a href=\"https://snyk.io/account/\">Personal API Token</a> or <a href=\"https://snyk.io/docs/service-accounts/\">Service Account</a> token.",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "guid"
}
}
]
}
],
"helpMarkDown": "Log into your <a href=\"https://snyk.io/account/\">Snyk account</a> to get either your <a href=\"https://snyk.io/account/\">Personal API Token</a> or <a href=\"https://snyk.io/docs/service-accounts/\">Service Account</a> token."
}
}
]
}