-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
151 lines (151 loc) · 3.82 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "vscode-go-cd",
"displayName": "Go CD Pipeline",
"description": "Provides information about the current status of your Go CD pipelines",
"version": "0.0.5",
"publisher": "inlustra",
"repository": {
"type": "git",
"url": "https://github.com/Inlustra/vscode-go-cd.git"
},
"engines": {
"vscode": "^1.25.0"
},
"preview": true,
"icon": "assets/logo-256.png",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"extensionDependencies": [
"vscode.git"
],
"galleryBanner": {
"color": "#95328F",
"theme": "dark"
},
"main": "./out/src/extension",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "go-cd-view",
"title": "GoCD",
"icon": "assets/gocd.svg"
}
]
},
"views": {
"go-cd-view": [
{
"id": "go-cd-selected-pipeline",
"name": "Selected Pipeline"
},
{
"id": "go-cd-pipelines",
"name": "All Pipelines"
}
]
},
"commands": [
{
"command": "gocd.guessSelectedPipeline",
"title": "Go CD: Automatically Guess Selected Pipeline"
},
{
"command": "gocd.openArtifact",
"title": "Go CD: Open Artifact"
},
{
"command": "gocd.setGlobalConfig",
"title": "Go CD: Set Global Config"
},
{
"command": "gocd.forceRefresh",
"title": "Go CD: Force Refresh"
},
{
"command": "gocd.manualSelectPipeline",
"title": "Go CD: Manually Select Pipeline"
}
],
"configuration": {
"type": "object",
"title": "Go CD Pipeline Configuration",
"properties": {
"gocd.url": {
"type": "string",
"default": null,
"description": "The base URL for the Go CD Pipeline requests"
},
"gocd.username": {
"type": "string",
"default": null,
"description": "The username for the Go CD Pipelines requests"
},
"gocd.password": {
"type": "string",
"default": null,
"description": "The password for the Go CD Pipelines requests"
},
"gocd.pipeline": {
"type": "string",
"default": null,
"description": "The pipeline to display the short information for in the status bar."
},
"gocd.refreshInterval": {
"type": "number",
"default": 20000,
"description": "The amount of time between refreshing the pipeline info"
},
"gocd.logLevel": {
"type": "string",
"default": "info",
"enum": [
"silly",
"debug",
"verbose",
"info",
"warn",
"error"
],
"description": "The priority level of logs that are added to the GoCD output channel in VSCode"
},
"gocd.failureDisplay": {
"type": "string",
"enum": [
"none",
"all",
"causedByMe"
],
"description": "(Currently does nothing) Defines when the gocd build failures should be displayed"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.114",
"@types/request-promise-native": "^1.0.15",
"mocha": "^2.3.3",
"rxjs-tslint": "^0.1.5",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"vscode": "^1.1.18"
},
"dependencies": {
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"rxjs": "^6.2.2",
"winston": "^3.0.0",
"winston-transport": "^4.2.0"
}
}