-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
143 lines (143 loc) · 3.53 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
{
"name": "codecov",
"displayName": "Codecov YAML Validator",
"publisher": "codecov",
"activationEvents": [
"onInstall",
"onUpdate"
],
"icon": "./icons/codecov.png",
"description": "Codecov's official validator extension for Visual Studio Code, it helps with setup and configuration of new repositories.",
"license": "MIT",
"homepage": "https://github.com/codecov/vscode/blob/main/README.md",
"bugs": {
"url": "https://github.com/codecov/vscode/issues"
},
"version": "0.0.0",
"repository": "https://github.com/codecov/vscode",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Linters",
"Formatters"
],
"main": "./dist/extension.js",
"vscode": {
"files": [
"dist/languageserver.js"
]
},
"contributes": {
"yamlValidation": [
{
"url": "./schemas/codecov.json",
"fileMatch": [
"codecov.yaml",
"codecov.yml",
"*/codecov.yaml",
"*/codecov.yml"
]
}
],
"languages": [
{
"id": "codecov",
"aliases": [
"Codecov",
"codecov"
],
"icon": {
"light": "./icons/codecov.png",
"dark": "./icons/codecov.png"
},
"filenames": [
"codecov.yaml",
"codecov.yml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "codecov",
"scopeName": "source.codecov",
"path": "./syntaxes/codecov.tmLanguage.json"
}
],
"menus": {
"editor/title": [
{
"command": "codecov.validate",
"group": "navigation",
"when": "resourceLangId == codecov"
}
]
},
"commands": [
{
"command": "codecov.validate",
"title": "Codecov: Validate current file for Codecov configuration",
"icon": {
"light": "./icons/codecov-light.png",
"dark": "./icons/codecov-dark.png"
}
}
],
"configurationDefaults": {
"[codecov]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.autoIndent": "keep"
}
}
},
"configuration": {
"yaml.keyOrdering": {
"type": "boolean",
"default": false,
"description": "Enforces alphabetical ordering of keys in mappings when set to true"
}
},
"scripts": {
"clean": "rimraf out && rimraf dist && rimraf schemas/codecov.json",
"build": "webpack --mode none",
"watch": "tsc -watch -p ./ & webpack --mode development --watch",
"lint": "eslint src --ext ts"
},
"dependencies": {
"axios": "^1.6.2",
"fs-extra": "^11.2.0",
"request-light": "^0.7.0",
"vscode-languageclient": "^8.1.0",
"vscode-uri": "^3.0.7",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^18.19.3",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"buffer": "^6.0.3",
"eslint": "^8.55.0",
"glob": "^10.3.10",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"umd-compat-loader": "^2.1.2",
"url": "^0.11.3",
"util": "^0.12.5",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"yaml-language-server": "^1.12.0"
}
}