-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.05 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
{
"name": "cfn-custom-certificate",
"version": "0.0.6",
"description": "Defines helper functions for managing AWS Certificate Managers certificates via the aws-sdk for JS. It provides functionality for requesting and validating certificates and observing the validation status. The package can be used within a AWS Lambda which could back a cloudformation custom resource.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"publish:prod": "rm -rf dist && cp -R src dist/ && npm version patch && npm publish"
},
"author": "Vincenz Koop",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.213.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinnichase/cfn-custom-certificate.git"
},
"keywords": [
"cloudformation",
"custom",
"certificate",
"lambda"
],
"bugs": {
"url": "https://github.com/vinnichase/cfn-custom-certificate/issues"
},
"homepage": "https://github.com/vinnichase/cfn-custom-certificate#readme"
}