-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 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
{
"name": "yamlfmt",
"displayName": "yamlfmt",
"description": "Format yaml files with https://github.com/google/yamlfmt",
"version": "0.1.4",
"author": {
"name": "Nico Braun",
"email": "[email protected]",
"url": "https://bluebrown.github.io"
},
"repository": {
"url": "https://github.com/bluebrown/vscode-extension-yamlfmt"
},
"engines": {
"vscode": "^1.89.0"
},
"publisher": "bluebrown",
"pricing": "Free",
"categories": [
"Formatters"
],
"keywords": [
"multi-root ready"
],
"activationEvents": [
"onLanguage:yaml",
"onLanguage:github-actions-workflow",
"onLanguage:dockercompose"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "yamlfmt",
"properties": {
"yamlfmt.args": {
"scope": "resource",
"description": "Command line arguments, passed to yamlfmt",
"type": "array",
"default": [],
"items": {
"type": "string"
}
}
}
}
},
"scripts": {
"lint": "eslint --max-warnings 0 .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"package": "node_modules/.bin/vsce package",
"publish": "node_modules/.bin/vsce publish",
"convco": "docker run -u \"$(id -u):$(id -g)\" -v \"$PWD:/tmp\" --workdir /tmp --rm convco/convco",
"release": "bash ./hack/release.sh"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.9",
"@types/vscode": "^1.90.0",
"@vscode/test-electron": "^2.4.0",
"@vscode/vsce": "^2.29.0",
"eslint": "^8.45.0",
"mocha": "^10.4.0",
"typescript": "^5.4.5"
}
}