forked from jlandersen/vscode-vsts-build-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.35 KB
/
package.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
{
"name": "vstsbuildstatus",
"displayName": "Visual Studio Team Services Build Status",
"description": "Monitor Visual Studio Team Services builds in the status bar",
"version": "0.5.0",
"publisher": "jeppeandersen",
"license": "MIT",
"keywords": [
"Visual Studio Team Services",
"Build Status",
"CI"
],
"icon": "assets/icon.png",
"bugs": {
"url": "https://github.com/jlandersen/vscode-vsts-build-status/issues"
},
"homepage": "https://github.com/jlandersen/vscode-vsts-build-status/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/jlandersen/vscode-vsts-build-status.git"
},
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"node-rest-client": "^2.0.0",
"openurl": "^1.1.1"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"contributes": {
"configuration": {
"type": "object",
"title": "VSTS Build Status Configuration",
"properties": {
"vsts.account": {
"type": "string",
"default": "",
"description": "Specifies your Visual Studio Team Services account name ([account].visualstudio.com)."
},
"vsts.username": {
"type": "string",
"default": "",
"description": "Specifies a username to use for accessing VSTS Build information on the account. Not needed if you use a personal acceess token."
},
"vsts.password": {
"type": "string",
"default": "",
"description": "Specifies the password or Personal Access Token to use for accessing VSTS Build information on the account."
},
"vsts.project": {
"type": "string",
"default": "",
"description": "Specifies the VSTS project to look for builds in."
}
}
},
"commands": [
{
"command": "extension.openVstsBuildDefinitionSelection",
"title": " VSTS Build Status: Select Build Definition to Monitor"
},
{
"command": "extension.openVstsQueueBuildSelection",
"title": " VSTS Build Status: Queue Build"
},
{
"command": "extension.openVstsBuildLogSelection",
"title": " VSTS Build Status: View Build Log"
},
{
"command": "extension.openVstsBuildWebSelection",
"title": "VSTS Build Status: Open Build in Browser"
}
]
}
}