forked from mauricioklein/vscode-cdk-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.06 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
{
"name": "cdk-snippets",
"version": "0.1.0",
"publisher": "mklein",
"author": {
"name": "Mauricio Klein"
},
"engines": {
"vscode": "^1.49.0"
},
"bugs": {
"url": "https://github.com/mauricioklein/vscode-cdk-snippets/issues"
},
"homepage": "https://github.com/mauricioklein/vscode-cdk-snippets",
"license": "SEE LICENSE IN LICENSE",
"displayName": "CDK Snippets",
"description": "Unofficial set of snippets for CDK",
"categories": [
"Snippets"
],
"keywords": [
"cdk"
],
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/mauricioklein/vscode-cdk-snippets.git"
},
"scripts": {
"build": "vsce package",
"commit": "cz",
"generate-catalog": "go run bin/generate-catalog.go",
"release": "standard-version"
},
"contributes": {
"snippets": [
{
"language": "typescript",
"path": "./snippets/core.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/iam.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/dynamodb.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/lambda.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/s3.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/kms.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/sqs.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/sns.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/sns-subscription.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/api-gateway.code-snippets"
}
]
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.0.0",
"vsce": "^1.81.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}