forked from rixrix/vscode-terraform-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "terraform-snippets",
"displayName": "Advanced Terraform Snippets Generator",
"description": "Provides 550+ code snippets of Hashicorp's Terraform cloud orchestration tool.",
"version": "1.9.1",
"publisher": "mindginative",
"author": {
"name": "Richard Sentino",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/rixrix/vscode-terraform-snippets/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rixrix/vscode-terraform-snippets.git"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "terraform",
"path": "./snippets/terraform.json"
}
]
},
"icon": "images/[email protected]",
"galleryBanner": {
"color": "#822ff7",
"theme": "dark"
},
"license": "MIT",
"devDependencies": {
"glob": "^7.1.2",
"task-nibbler": "^1.0.5",
"vsce": "^1.18.0"
},
"scripts": {
"vsce:publish": "vsce publish",
"postversion": "npm run vsce:publish && git push && git push --tags",
"build": "node ./scripts/build.js"
}
}