-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
44 lines (43 loc) · 1.2 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
{
"manifestVersion": 1,
"id": "vsts-gitflow",
"version": "0.1.142",
"name": "VSTS GitFlow",
"description": "",
"publisher": "ChrisWoolum",
"targets": [{
"id": "Microsoft.VisualStudio.Services"
}],
"contributions": [{
"id": "VstsGitFlow.Hub",
"type": "ms.vss-web.hub",
"description": "Adds a 'GitFlow' hub to the Work hub group.",
"targets": [
"ms.vss-work-web.work-hub-group"
],
"properties": {
"name": "GitFlow",
"order": 99,
"uri": "static/gitflow-config.html"
}
}],
"scopes": [
"vso.build",
"vso.build_execute",
"vso.code_manage"
],
"files": [{
"path": "dist",
"addressable": true
},
{
"path": "static",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
]
}