-
Notifications
You must be signed in to change notification settings - Fork 3
/
vss-extension.json
85 lines (85 loc) · 2.17 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
{
"manifestVersion": 1,
"id": "anchore-scan-task",
"name": "Anchore Container Scan Task",
"version": "0.0.3",
"publisher": "AnchoreInc",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Scan docker containers with Anchore for vulnerabilities and policy violations.",
"categories": [
"Azure Pipelines"
],
"tags": [
"Container",
"Security",
"Scanning"
],
"icons": {
"default": "images/anchore.png"
},
"branding": {
"color": "rgb(34, 34, 34)",
"theme": "dark"
},
"content": {
"details": {
"path": "README.md"
}
},
"links": {
"home": {
"uri": "https://anchore.com"
},
"getstarted": {
"uri": "https://docs.anchore.com/current/docs/engine/usage/integration/ci_cd/"
},
"learn": {
"uri": "https://docs.anchore.com/current/docs/engine/releasenotes/"
},
"support": {
"uri": "https://www.anchore.com/support"
},
"repository": {
"uri": "https://github.com/anchore/azure-devops-task"
},
"issues": {
"uri": "https://github.com/anchore/azure-devops-task/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/anchore/azure-devops-task"
},
"files": [
{
"path": "anchore-scan-task"
},
{
"path": "images/anchore.png",
"addressable": true
}
],
"contributions": [
{
"id": "anchore-scan-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "anchore-scan-task",
"iconAsset": "AnchoreInc.anchore-scan-task/images/anchore.png",
"includesData": {
"assets": [
"AnchoreInc.anchore-scan-task/images/anchore.png"
]
}
}
}
]
}