-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
218 lines (218 loc) · 7.23 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
{
"name": "ci-cd-assets-vscode",
"displayName": "CI/CD Assets",
"publisher": "gep13",
"description": "Set of commands for downloading CI/CD assets.",
"version": "0.1.0",
"icon": "images/cicd.png",
"private": true,
"author": {
"name": "gep13"
},
"bugs": {
"url": "https://github.com/gep13-oss/CI-CD-assets-vscode/issues"
},
"homepage": "https://github.com/gep13-oss/CI-CD-assets-vscode",
"repository": {
"type": "git",
"url": "https://github.com/gep13-oss/CI-CD-assets-vscode"
},
"main": "./out/extension",
"galleryBanner": {
"color": "#DCEBFC",
"theme": "light"
},
"activationEvents": [
"onCommand:cicd.editorconfig",
"onCommand:cicd.appveyor",
"onCommand:cicd.gitattributes",
"onCommand:cicd.gitignore",
"onCommand:cicd.mergify",
"onCommand:cicd.travis",
"onCommand:cicd.gitreleasemanager",
"onCommand:cicd.wyam",
"onCommand:cicd.github",
"onCommand:cicd.all",
"onCommand:cicd.dependabot"
],
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Other"
],
"contributes": {
"configuration": [
{
"type": "object",
"title": "CI/CD Assets Configuration",
"properties": {
"cicd.urls": {
"type": "object",
"default": {
"editorconfig": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.editorconfig",
"appveyor": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.appveyor.yml",
"gitattributes": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.gitattributes",
"gitignore": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.gitignore",
"mergify": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.mergify.yml",
"travis": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.travis.yml",
"gitreleasemanager": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/GitReleaseManager.yaml",
"wyam": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/config.wyam",
"dependabot": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.dependabot/config.yml",
"github": [
{
"name": "CODEOFCONDUCT.md",
"url": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/CODEOFCONDUCT.md"
},
{
"name": "CONTRIBUTING.md",
"url": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/CONTRIBUTING.md"
},
{
"name": "ISSUE_TEMPLATE.md",
"url": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/ISSUE_TEMPLATE.md"
},
{
"name": "PULL_REQUEST_TEMPLATE.md",
"url": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/PULL_REQUEST_TEMPLATE.md"
}
]
},
"description": "The URL's to download files from.",
"properties": {
"editorconfig": {
"type": "string",
"description": "The URL to download the EditorConfig file from.",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.editorconfig"
},
"appveyor": {
"type": "string",
"description": "The URL to download the AppVeyor file from.",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.appveyor.yml"
},
"gitattributes": {
"type": "string",
"description": "The URL to download the .gitattributes file from.",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.gitattributes"
},
"gitignore": {
"type": "string",
"description": "The URL to download the .gitignore file from.",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.gitignore"
},
"mergify": {
"type": "string",
"description": "The URL to download the .mergify.yml file from",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.mergify.yml"
},
"travis": {
"type": "string",
"description": "The URL to download the .travis.yml file from",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.travis.yml"
},
"gitreleasemanager": {
"type": "string",
"description": "The URL to download the GitReleaseManager.yaml file from",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/GitReleaseManager.yaml"
},
"wyam": {
"type": "string",
"description": "The URL to download the config.wyam file from",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/config.wyam"
},
"dependabot": {
"type": "string",
"description": "The URL to download the dependabot config file from",
"default": "https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.dependabot/config.yml"
},
"github": {
"type": "array",
"description": "Array of URL's to be placed in .github folder",
"default": [
"https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/CODEOFCONDUCT.md",
"https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/CONTRIBUTING.md",
"https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/ISSUE_TEMPLATE.md",
"https://raw.githubusercontent.com/gep13-oss/CI-CD-assets/master/.github/PULL_REQUEST_TEMPLATE.md"
]
}
}
}
}
}
],
"commands": [
{
"command": "cicd.editorconfig",
"title": "CICD: Download .editorconfig file"
},
{
"command": "cicd.appveyor",
"title": "CICD: Download .appveyor.yml file"
},
{
"command": "cicd.gitattributes",
"title": "CICD: Download .gitattributes file"
},
{
"command": "cicd.gitignore",
"title": "CICD: Download .gitignore file"
},
{
"command": "cicd.mergify",
"title": "CICD: Download .mergify.yml file"
},
{
"command": "cicd.travis",
"title": "CICD: Download .travis.yml file"
},
{
"command": "cicd.gitreleasemanager",
"title": "CICD: Download GitReleaseManager.yaml file"
},
{
"command": "cicd.wyam",
"title": "CICD: Download config.wyam file"
},
{
"command": "cicd.github",
"title": "CICD: Download .github files"
},
{
"command": "cicd.all",
"title": "CICD: Download all files."
},
{
"command": "cicd.dependabot",
"title": "CICD: Download .dependabot config file"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/byline": "^4.2.32",
"@types/expect": "^24.3.0",
"@types/ini": "^1.3.30",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@types/node-fetch": "^2.5.7",
"@types/xml2js": "^0.4.5",
"expect": "^26.0.1",
"mocha": "^7.1.2",
"tslint": "^6.1.2",
"typemoq": "^2.1.0",
"typescript": "^3.9.2",
"vscode": "^1.1.37"
},
"dependencies": {
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",
"replace-in-file": "^6.0.0",
"request": "^2.88.2"
}
}