-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 Bytes
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
{
"name": "aws-cloudformation-yaml",
"displayName": "aws-cloudformation-yaml",
"description": "Adds YAML and JSON snippets for AWS CloudFormation to VS Code",
"version": "0.2.2",
"publisher": "DanielThielking",
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "yaml",
"path": "./snippets/yaml.json"
},
{
"language": "json",
"path": "./snippets/json.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/dthielking/aws-cloudformation-yaml.git"
}
}