-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
145 lines (145 loc) · 4.93 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
{
"name": "azure-pipelines",
"displayName": "Azure Pipelines",
"description": "Syntax highlighting, IntelliSense, and more for Azure Pipelines YAML",
"version": "1.247.3",
"publisher": "ms-azure-devops",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/azure-pipelines-vscode"
},
"homepage": "https://github.com/Microsoft/azure-pipelines-vscode/blob/main/README.md",
"bugs": "https://github.com/Microsoft/azure-pipelines-vscode/issues/",
"license": "MIT",
"icon": "assets/pipelines.png",
"galleryBanner": {
"color": "#D4DCEC",
"theme": "light"
},
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Azure"
],
"tags": [
"azure-pipelines",
"Azure Pipelines",
"YAML"
],
"keywords": [
"YAML",
"Azure Pipelines",
"continuous integration",
"CI/CD"
],
"main": "./dist/extension",
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"restrictedConfigurations": [
"azure-pipelines.customSchemaFile"
]
}
},
"contributes": {
"languages": [
{
"id": "azure-pipelines",
"configuration": "./language-configuration.json",
"filenamePatterns": [
"azure-pipelines.{yml,yaml}",
".azure-pipelines.{yml,yaml}",
"**/azure-pipelines/**/*.{yml,yaml}",
"**/.azure-pipelines/**/*.{yml,yaml}",
"**/.pipelines/**/*.{yml,yaml}",
"vsts-ci.{yml,yaml}",
".vsts-ci.{yml,yaml}"
],
"aliases": [
"Azure Pipelines"
],
"icon": {
"light": "./assets/pipelines-file-icon.svg",
"dark": "./assets/pipelines-file-icon.svg"
}
}
],
"grammars": [
{
"language": "azure-pipelines",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.tmLanguage.json"
}
],
"configuration": {
"title": "Azure Pipelines",
"properties": {
"azure-pipelines.1ESPipelineTemplatesSchemaFile": {
"type": "boolean",
"default": false,
"description": "Use 1ES Pipeline Template schema file",
"markdownDescription": "If enabled, [1ES Pipeline Template schema file](https://aka.ms/1espt) will take precedence over custom schema file when user is signed in with `@microsoft.com` account and the schema is available in the ADO organization."
},
"azure-pipelines.customSchemaFile": {
"type": "string",
"description": "Use a different schema file",
"scope": "machine-overridable"
}
}
},
"configurationDefaults": {
"[azure-pipelines]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.autoIndent": "full"
}
},
"commands": [
{
"command": "azure-pipelines.reset-state",
"title": "Reset 'do not ask again' messages",
"category": "Azure Pipelines"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack --mode production --progress --color",
"compile:dev": "webpack --mode development --progress --color",
"compile:test": "tsc --project ./tsconfig.test.json",
"lint": "eslint .",
"watch": "webpack --mode development --progress --color --watch",
"test": "npm run compile:test && vscode-test"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "~20.15.0",
"@types/vscode": "~1.82.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^8.54.0",
"mocha": "^9.1.1",
"ts-loader": "^8.0.14",
"typescript": "~5.2.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@vscode/extension-telemetry": "^0.5.1",
"azure-devops-node-api": "^11.0.1",
"azure-pipelines-language-server": "0.8.0",
"vscode-languageclient": "^7.0.0",
"vscode-uri": "^3.0.2"
}
}