-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
107 lines (107 loc) · 3.07 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
{
"manifestVersion": 1,
"id": "npm-audit-widget",
"version": "1.0.16",
"name": "npm audit widget",
"description": "Displays the number and severity of security issues in the build",
"publisher": "BrandonBoone",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "img/logo.png"
},
"scopes": [
"vso.build"
],
"categories": [
"Plan and track"
],
"galleryFlags": [
"Public",
"Preview"
],
"contributions": [
{
"id": "npmAuditWidget",
"type": "ms.vss-dashboards-web.widget",
"targets": [
"ms.vss-dashboards-web.widget-catalog",
".npmAuditWidget.Configuration"
],
"properties": {
"name": "npm Audit Widget",
"description": "Displays the number and severity of security issues in the build",
"catalogIconUrl": "img/logo.png",
"previewImageUrl": "img/preview.png",
"uri": "npm-audit-widget.html",
"supportedSizes": [
{
"rowSpan": 1,
"columnSpan": 1
}
],
"supportedScopes": ["project_team"]
}
},
{
"id": "npmAuditWidget.Configuration",
"type": "ms.vss-dashboards-web.widget-configuration",
"targets": [ "ms.vss-dashboards-web.widget-configuration" ],
"properties": {
"name": "npm Audit Widget Configuration",
"description": "Configures Audit Widget",
"uri": "configuration.html"
}
}
],
"files": [
{
"path": "npm-audit-widget.html", "addressable": true
},
{
"path": "configuration.html", "addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib", "addressable": true
},
{
"path": "node_modules/jszip/dist", "addressable": true
},
{
"path": "dist", "addressable": true
},
{
"path": "img", "addressable": true
}
],
"links": {
"repository": {
"uri": "https://github.com/BrandonBoone/npm-audit-widget"
},
"issues": {
"uri": "https://github.com/BrandonBoone/npm-audit-widget/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/BrandonBoone/npm-audit-widget"
},
"badges": [
{
"href": "https://travis-ci.org/BrandonBoone/npm-audit-widget",
"uri": "https://api.travis-ci.org/BrandonBoone/npm-audit-widget.svg?branch=master",
"description": "TravisCI build for the project"
}
],
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "LICENSE"
}
}
}