forked from technosophos/vscode-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 4.99 KB
/
package.json
File metadata and controls
153 lines (153 loc) · 4.99 KB
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
144
145
146
147
148
149
150
151
152
153
{
"name": "vscode-helm",
"displayName": "vscode-helm",
"description": "Chart development tools for Kubernetes Helm",
"version": "0.2.0",
"publisher": "technosophos",
"icon": "images/helm_icon.png",
"engines": {
"vscode": "^1.11.0"
},
"license": "MIT",
"repository": "https://github.com/technosophos/vscode-helm.git",
"categories": [
"Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:extension.helmTemplate",
"onCommand:extension.helmTemplatePreview",
"onCommand:extension.helmLint",
"onCommand:extension.helmDryRun",
"onCommand:extension.helmVersion",
"onCommand:extension.helmCreate",
"onCommand:extension.draftVersion",
"onLanguage:helm"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.helmVersion",
"title": "Helm: Version (Client)",
"description": "Get the version of the local Helm client."
},
{
"command": "extension.helmLint",
"title": "Helm: Lint",
"description": "Run the linter on this chart."
},
{
"command": "extension.helmDepUp",
"title": "Helm: Dependency Update",
"description": "Update the dependencies listed in requirements.yaml."
},
{
"command": "extension.helmDryRun",
"title": "Helm: Dry Run",
"description": "Run 'helm install --dry-run --debug' on this chart."
},
{
"command": "extension.helmTemplate",
"title": "Helm: Template",
"description": "Run 'helm template' on this chart. Requires the helm-template plugin."
},
{
"command": "extension.helmInsertReq",
"title": "Helm: Insert Dependency",
"description": "Insert a dependency YAML fragment"
},
{
"command": "extension.helmTemplatePreview",
"title": "Helm: Preview Template",
"description": "Run 'helm template' on this chart and show only this file. Requires the helm-template plugin."
},
{
"command": "extension.helmInspectValues",
"title": "Inspect Chart",
"description": "Inspect a Helm Chart"
},
{
"command": "extension.helmCreate",
"title": "Helm: Create Chart",
"description": "Create a new Helm Chart"
},
{
"command": "extension.draftVersion",
"title": "Draft: Version",
"description": "Get the version of the local Draft client."
},
{
"command": "extension.draftUp",
"title": "Draft: Up",
"description": "Build, Deploy, and Run the app in-cluster."
},
{
"command": "extension.draftCreate",
"title": "Draft: Create",
"description": "Create a new Draft project"
}
],
"menus": {
"explorer/context": [
{
"title": "Update Dependencies",
"when": "resourceFilename == requirements.yaml",
"command": "extension.helmDepUp",
"group": "navigation@99"
},
{
"when": "",
"command": "extension.helmInspectValues",
"group": "navigation@98"
}
]
},
"languages": [
{
"id": "helm",
"aliases": [
"helm-template",
"helm"
],
"extensions": [
".yaml",
".tpl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "helm",
"scopeName": "source.helm",
"path": "./syntaxes/helm.tmLanguage.json"
}
],
"snippets": [
{
"language": "helm",
"path": "./snippets/helm.json"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"shelljs": "0.7.7",
"yamljs": "0.2.10",
"lodash": ">3"
}
}