-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "aws-cdk-cross-account-dns-validated-certificate",
"description": "AWS CDK L3 construct for issuing a certificate through Certificate Manager using cross account Route 53 DNS validation",
"version": "0.1.0",
"author": {
"name": "balzanelli",
"url": "https://balzanel.li/"
},
"homepage": "https://github.com/balzanelli/aws-cdk-cross-account-dns-validated-certificate",
"repository": {
"type": "git",
"url": "https://github.com/balzanelli/aws-cdk-cross-account-dns-validated-certificate.git"
},
"license": "MIT",
"keywords": [
"aws",
"cdk",
"aws-cdk",
"aws-cdk-construct",
"ssl",
"certificate-manager",
"route53",
"dns01"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/node": "18.14.6",
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0",
"typescript": "~4.9.5",
"semantic-release": "^21.0.1"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}