-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.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
{
"name": "vscode-hcl-format",
"displayName": "HCL Format",
"description": "format HCL (HashiCorp Configuration Language)",
"version": "1.0.0",
"publisher": "fredwangwang",
"icon": "images/hcl.png",
"engines": {
"vscode": "^1.53.0",
"node": "^16.13.2"
},
"repository": {
"type": "git",
"url": "https://github.com/fredwangwang/vscode-hcl-formatter.git"
},
"license": "MIT",
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:hcl"
],
"main": "./out/src/extension",
"capabilities": {
"documentFormattingProvider": "true"
},
"keywords": [
"format",
"hcl",
"hashicorp",
"hashicorp configuration language"
],
"contributes": {
"languages": [
{
"id": "hcl",
"aliases": [
"HCL"
],
"extensions": [
"hcl",
"nomad",
"tf"
]
}
],
"configuration": {
"type": "object",
"title": "HCL Format",
"properties": {
"hclformat.hclfmt_path": {
"type": "string",
"default": "",
"description": "the hclfmt path. If not provided bundled hclfmt is used. (https://github.com/fredwangwang/vscode-hcl-formatter/releases)"
},
"hclformat.levant_support": {
"type": "boolean",
"default": true,
"description": "Experimental: supports format HCL files that have [levant](https://github.com/hashicorp/levant) syntax embeded."
}
}
}
},
"extensionDependencies": [
"mindaro-dev.file-downloader"
],
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "tsc && ./node_modules/.bin/vsce package",
"publish": "tsc && ./node_modules/.bin/vsce publish",
"test": "./node_modules/.bin/ts-mocha --paths test/*.spec.ts"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.12.68",
"@types/vscode": "^1.30.0",
"mocha": "^9.2.0",
"ts-mocha": "^7.0.0",
"typescript": "^4.0.3",
"vsce": "^2.6.3",
"vscode": "^1.1.37"
},
"dependencies": {
"@microsoft/vscode-file-downloader-api": "^1.0.1",
"uuid": "^8.3.1"
}
}