-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.84 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
{
"activationEvents": [
"onLanguage:terragrunt",
"onLanguage:terraform",
"onLanguage:hcl",
"onLanguage:plaintext"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "terragrunt-navigator.replacementStringsCommand",
"title": "Terragrunt Navigator: Replacement Strings"
},
{
"command": "terragrunt-navigator.featureTogglesCommand",
"title": "Terragrunt Navigator: Feature Toggles"
}
],
"configuration": {
"properties": {
"terragrunt-navigator.featureToggles": {
"default": {},
"description": "Controls the feature toggles for the Terragrunt Navigator extension.",
"properties": {
"ReplaceStrings": {
"default": true,
"description": "Enable/disable string replacements feature.",
"type": "boolean"
}
},
"type": "object"
},
"terragrunt-navigator.replacementStrings": {
"default": [],
"description": "Array of replacement strings",
"items": {
"properties": {
"find": {
"type": "string"
},
"replace": {
"type": "string"
}
},
"required": [
"find",
"replace"
],
"type": "object"
},
"type": "array"
}
},
"resources": [
{
"path": "navigate.png",
"type": "image"
}
],
"title": "Terragrunt Navigator"
}
},
"dependencies": {
"antlr4": "^4.13.2",
"jsep": "^1.3.9",
"minimist": "^1.2.8"
},
"description": "Navigate terragrunt/terrform code with Ctrl+click",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@types/vscode": "^1.64.0",
"@vscode/test-electron": "^2.0.0",
"glob": "^9.3.5",
"mkdirp": "^1.0.4",
"mocha": "^10.7.3",
"rimraf": "^4.0.0",
"webpack": "^5.64.4",
"webpack-cli": "^4.10.0"
},
"displayName": "Terragrunt/Terraform Navigator",
"engines": {
"vscode": ">=1.64.0"
},
"icon": "icon.png",
"license": "MIT",
"main": "./extension.js",
"name": "terragrunt-navigator",
"publisher": "RenyPaul",
"repository": {
"type": "git",
"url": "https://github.com/HPInc/terragrunt-navigator.git"
},
"scripts": {
"build:dev": "webpack --mode none",
"build:prod": "webpack --mode production",
"compile": "java -jar /usr/local/lib/antlr-4.13.2-complete.jar -Dlanguage=JavaScript hclLexer.g4 hclParser.g4 -o generated -Xexact-output-dir -visitor && npx babel generated --out-dir generated-cjs",
"test": "node ./parser.js tests/env/region/cluster/terragrunt.hcl"
},
"version": "0.8.1"
}