-
Notifications
You must be signed in to change notification settings - Fork 25
/
vss-extension.json
105 lines (105 loc) · 2.15 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
{
"manifestVersion": 1,
"id": "dependencycheck",
"version": "1.0.0",
"name": "OWASP Dependency Check",
"public": true,
"scopes": [
"vso.build_execute"
],
"description": "Dependency Check is a Software Composition Analysis (SCA) tool that attempts to detect publicly disclosed vulnerabilities contained within a project's dependencies.",
"publisher": "dependency-check",
"galleryFlags": [
"Public"
],
"licensing": {
"overrides": [
{
"id": "dependency-check-build-task",
"behavior": " AlwaysInclude"
}
]
},
"icons": {
"default": "images/logo-128x128.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"demands": [
"api-version/3.0"
],
"tags": [
"Software Composition Analysis",
"Vulnerability Detection",
"Security",
"OWASP",
"CWE",
"A9",
"Using Components with Known Vulnerabilities",
"Supply Chain Security"
],
"categories": [
"Azure Pipelines"
],
"screenshots": [
{
"path": "screenshots/buildtask-configure.png"
},
{
"path": "screenshots/build-tests.png"
},
{
"path": "screenshots/report.png"
}
],
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "license.md"
}
},
"links": {
"repository": {
"uri": "https://github.com/dependency-check/azuredevops"
},
"issues": {
"uri": "https://github.com/dependency-check/azuredevops/issues"
},
"getstarted": {
"uri": "https://jeremylong.github.io/DependencyCheck/index.html"
},
"support": {
"uri": "https://github.com/jeremylong/DependencyCheck"
}
},
"branding": {
"color": "rgb(255, 255, 255)",
"theme": "light"
},
"files": [
{
"path": "Tasks/DependencyCheck"
},
{
"path": "images/logo-128x128.png",
"addressable": true
}
],
"contributions": [
{
"id": "dependency-check-build-task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"type": "ms.vss-distributed-task.task",
"properties": {
"name": "Tasks/DependencyCheck"
}
}
]
}