-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
128 lines (128 loc) · 3.15 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
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "cloudformation-yaml-snippets",
"displayName": "AWS CloudFormation Snippets",
"description": "Adds snippets for all the AWS CloudFormation resources in VS Code.",
"author": "Danny Steenman",
"version": "5.31.0",
"publisher": "dannysteenman",
"icon": "images/cfn-snippets-extension-icon.png",
"homepage": "https://towardsthecloud.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dannysteenman/vscode-cloudformation-snippets.git"
},
"engines": {
"vscode": "^1.31.0"
},
"galleryBanner": {
"color": "#2B2C33",
"theme": "dark"
},
"categories": [
"Snippets"
],
"keywords": [
"aws",
"cloudformation",
"sam",
"iac",
"yaml"
],
"badges": [
{
"url": "https://img.shields.io/visual-studio-marketplace/v/dannysteenman.cloudformation-yaml-snippets",
"href": "https://marketplace.visualstudio.com/items?itemName=dannysteenman.cloudformation-yaml-snippets",
"description": "Version"
},
{
"url": "https://img.shields.io/visual-studio-marketplace/i/dannysteenman.cloudformation-yaml-snippets",
"href": "https://marketplace.visualstudio.com/items?itemName=dannysteenman.cloudformation-yaml-snippets",
"description": "Installs"
},
{
"url": "https://img.shields.io/visual-studio-marketplace/stars/dannysteenman.cloudformation-yaml-snippets",
"href": "https://marketplace.visualstudio.com/items?itemName=dannysteenman.cloudformation-yaml-snippets",
"description": "Rating"
}
],
"activationEvents": [
"onLanguage:yaml",
"onLanguage:json"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^14.x",
"@types/vscode": "^1.31.0",
"typescript": "^5.x"
},
"contributes": {
"languages": [
{
"id": "json",
"aliases": [
"JSON",
"json"
],
"extensions": [
".json",
".template"
]
},
{
"id": "yaml",
"aliases": [
"YAML",
"json"
],
"extensions": [
".yaml",
".yml",
".template"
]
}
],
"snippets": [
{
"language": "json",
"path": "./snippets/json-general.json"
},
{
"language": "json",
"path": "./snippets/json-cfn-resource-types.json"
},
{
"language": "yaml",
"path": "./snippets/yaml-condition-functions.json"
},
{
"language": "yaml",
"path": "./snippets/yaml-general.json"
},
{
"language": "yaml",
"path": "./snippets/yaml-intrinsic-functions.json"
},
{
"language": "yaml",
"path": "./snippets/yaml-parameter-types.json"
},
{
"language": "yaml",
"path": "./snippets/yaml-cfn-resource-types.json"
},
{
"language": "yaml",
"path": "./snippets/yaml-sam-resource-types.json"
}
]
},
"extensionDependencies": [
"redhat.vscode-yaml"
]
}