-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
115 lines (115 loc) · 2.41 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
{
"name": "terraform",
"displayName": "Terraform",
"description": "Terraform configuration language support (includes Terragrunt)",
"version": "0.2.5",
"icon": "icon.png",
"keywords": [
"terraform",
"tf",
"tfvars",
"tfstate",
"hashicorp",
"hcl",
"terragrunt"
],
"publisher": "4ops",
"author": {
"name": "Anton Kulikov"
},
"repository": {
"type": "git",
"url": "https://github.com/4ops/vscode-language-terraform.git"
},
"bugs": {
"url": "https://github.com/4ops/vscode-language-terraform/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"languages": [
{
"id": "tf",
"aliases": [
"Terraform",
"terraform"
],
"extensions": [
".tf"
],
"configuration": "./language-configuration.json"
},
{
"id": "tfvars",
"aliases": [
"Terraform Variables"
],
"extensions": [
".tfvars"
],
"configuration": "./language-configuration.json"
},
{
"id": "terragrunt",
"aliases": [
"Terragrunt"
],
"extensions": [
".hcl"
],
"configuration": "./language-configuration.json"
},
{
"id": "json",
"extensions": [
".tfstate"
]
}
],
"grammars": [
{
"language": "tf",
"scopeName": "source.tf",
"path": "./grammars/tf.json"
},
{
"language": "tfvars",
"scopeName": "source.tfvars",
"path": "./grammars/tfvars.json"
},
{
"language": "terragrunt",
"scopeName": "source.terragrunt",
"path": "./grammars/terragrunt.json"
}
],
"snippets": [
{
"language": "tf",
"path": "./snippets/tf.json"
}
]
},
"scripts": {
"build": "npm run compile -s",
"compile-tf": "yq eval --prettyPrint -o=json grammars/tf.yaml > grammars/tf.json",
"compile-tfvars": "yq eval --prettyPrint -o=json grammars/tfvars.yaml > grammars/tfvars.json",
"compile-terragrunt": "yq eval --prettyPrint -o=json grammars/terragrunt.yaml > grammars/terragrunt.json",
"compile-snippets": "yq eval --prettyPrint -o=json snippets/tf.yaml > snippets/tf.json",
"compile": "npm run compile-tf && npm run compile-tfvars && npm run compile-terragrunt && npm run compile-snippets",
"preversion": "git add -A .",
"postversion": "npm run push -s",
"prepush": "git push",
"push": "git push --tags",
"version": "npm run build -s"
},
"devDependencies": {
"vsce": "^2.7.0"
}
}