forked from udondan/aws-cloudformation-custom-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1016 Bytes
/
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
{
"name": "aws-cloudformation-custom-resource",
"version": "3.0.0",
"description": "Helper for managing custom AWS CloudFormation resources in a Lambda function",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/udondan/aws-cloudformation-custom-resource.git"
},
"keywords": [
"aws",
"cloudformation",
"lambda",
"resource",
"cloudformation-custom-resource"
],
"author": {
"name": "Daniel Schroeder",
"url": "https://www.udondan.com/",
"twitter": "udondan"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/udondan/aws-cloudformation-custom-resource/issues"
},
"homepage": "https://github.com/udondan/aws-cloudformation-custom-resource#readme",
"devDependencies": {
"@types/node": "^14.0.22",
"@types/aws-lambda": "^8.10.59",
"aws-lambda": "^1.0.6",
"aws-sdk": "^2.713.0"
},
"dependencies": {}
}