-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
93 lines (92 loc) · 1.68 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
{
"manifestVersion": 1.0,
"id": "query-board",
"version": "0.0.1",
"name": "Query board",
"description": "",
"publisher": "boykoant",
"galleryFlags": [
"Preview"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
}
],
"icons": {
"default": "img/icon.png"
},
"contributions": [
{
"id": "query-board",
"type": "ms.vss-web.tab",
"description": "",
"targets": [
"ms.vss-work-web.query-tabs"
],
"properties": {
"name": "Board",
"title": "Board",
"uri": "board.html"
}
}
],
"categories": [
"Plan and track"
],
"tags": [
"query",
"board"
],
"content": {
"details": {
"path": "docs/overview.md"
}
},
"links": {
"repository": {
"uri": "https://github.com/TFSExt/QueryBoard"
},
"issues": {
"uri": "https://github.com/TFSExt/QueryBoard/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/TFSExt/QueryBoard"
},
"scopes": [
"vso.work"
],
"files": [
{
"path": "board.html",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "vsts"
},
{
"path": "node_modules/knockout/build/output",
"addressable": true,
"packagePath": "knockout"
},
{
"path": "node_modules/bootstrap/dist",
"addressable": true,
"packagePath": "bootstrap"
},
{
"path": "js",
"addressable": true,
"packagePath": "js"
},
{
"path": "docs/screenshots",
"addressable": true,
"packagePath": "screenshots"
}
]
}