This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
168 lines (168 loc) · 5.17 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
{
"name": "azure-deploy",
"displayName": "Deploy to Azure",
"description": "Generating CI/CD pipelines to Azure from GitHub and Azure Repo",
"version": "1.2.3",
"publisher": "ms-vscode-deploy-azure",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-deploy-azure"
},
"homepage": "https://github.com/Microsoft/vscode-deploy-azure/blob/master/README.md",
"bugs": "https://github.com/Microsoft/vscode-deploy-azure/issues/",
"license": "MIT",
"icon": "assets/deployToAzure.png",
"galleryBanner": {
"color": "#D4DCEC",
"theme": "light"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Azure"
],
"tags": [
"azure-pipelines",
"Azure Pipelines",
"Deploy to Azure",
"YAML"
],
"keywords": [
"YAML",
"Azure Pipelines",
"continuous integration",
"CI/CD"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "yaml",
"aliases": [
"YAML",
"yaml"
],
"extensions": [
".yml",
".eyaml",
".eyml",
".yaml"
]
}
],
"grammars": [
{
"language": "yaml",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.tmLanguage.json"
}
],
"commands": [
{
"command": "configure-cicd-pipeline",
"title": "Configure CI/CD Pipeline",
"category": "Deploy to Azure"
},
{
"command": "browse-cicd-pipeline",
"title": "Browse Pipeline",
"category": "Deploy to Azure"
}
],
"menus": {
"explorer/context": [
{
"command": "configure-cicd-pipeline",
"group": "Deploy to Azure",
"when": "explorerResourceIsFolder == true"
}
],
"commandPalette": [
{
"command": "browse-cicd-pipeline",
"when": "never"
}
]
},
"configuration": {
"title": "Deploy to Azure",
"properties": {
"deployToAzure.UseAzurePipelinesForGithub": {
"type": "boolean",
"default": false,
"description": "Setup CI/CD in Azure Pipelines for GitHub Repositories. Please note that this setting is ignored while configuring the CI/CD workflows in Azure Kubernetes Service extension for Visual Studio Code."
},
"deployToAzure.UseGithubForCreatingNewRepository": {
"type": "boolean",
"default": true,
"description": "Use GitHub for creating new repository"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && node copyStaticFiles.js",
"watch": "node copyStaticFiles.js && tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run compile",
"test": "node ./out/configure/test/runTest.js"
},
"devDependencies": {
"@types/fs-extra": "4.0.5",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.1",
"@types/mocha": "^7.0.2",
"@types/mustache": "0.8.32",
"@types/node": "^7.0.43",
"@types/q": "1.5.0",
"@types/underscore": "1.8.9",
"ajv": "^6.9.1",
"assert": "1.4.1",
"chai": "^4.2.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"nock": "^13.0.2",
"ts-node": "7.0.1",
"tslint": "5.8.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "3.3.1",
"typescript-tslint-plugin": "^0.5.5",
"vscode": "1.1.37",
"vscode-azureextensiondev": "^0.3.1",
"vscode-test": "^1.3.0"
},
"dependencies": {
"azure-arm-resource": "7.3.0",
"azure-arm-website": "5.7.0",
"azureintegration-repoanalysis-client-internal": "^1.0.0",
"fs-extra": "^9.0.1",
"js-yaml": "^3.13.1",
"jsonpath-plus": "^3.0.0",
"mustache": "3.0.1",
"q": "1.5.1",
"semver": "^7.3.2",
"shelljs": "^0.3.0",
"simple-git": "^1.110.0",
"tweetsodium": "0.0.4",
"typed-rest-client": "1.0.7",
"underscore": "1.9.1",
"uuid": "^3.3.2",
"vscode-azureextensionui": "0.26.3",
"vscode-extension-telemetry": "0.0.18",
"vscode-languageclient": "^5.2.1",
"vscode-nls": "3.2.4",
"vscode-uri": "1.0.6",
"yaml-language-server": "^0.8.0"
},
"extensionDependencies": [
"ms-vscode.azure-account"
]
}