-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.88 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
{
"name": "aws-cdk-ses-domain-identity",
"version": "2.2.0",
"description": "Constructs for provisioning and referencing domain identities which can be used in SES RuleSets and Actions Construct.",
"main": "dist/dns-validated-domain-identity.js",
"types": "dist/dns-validated-domain-identity.d.ts",
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
},
"devDependencies": {
"@prescott/commitlint-preset": "1.0.9",
"@prescott/semantic-release-config": "1.0.17",
"@prescott/tslint-preset": "1.0.1",
"@types/jest": "29.5.14",
"@types/node": "^20.11.0",
"aws-cdk-lib": "2.173.4",
"constructs": "10.4.2",
"husky": "9.1.7",
"jest": "29.7.0",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "^5.3.3"
},
"scripts": {
"prepare": "husky install",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build && cd lambda-packages/dns-validated-domain-identity-handler && npm run build",
"test": "jest",
"lint": "tslint -c tslint.json '{src,test}/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/aws-cdk-ses-domain-identity.git"
},
"keywords": [
"aws",
"aws-cdk",
"aws-cdk-construct",
"aws-ses",
"ses"
],
"author": "MooYeol Prescott Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/aws-cdk-ses-domain-identity/issues"
},
"homepage": "https://github.com/mooyoul/aws-cdk-ses-domain-identity#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@prescott/commitlint-preset"
]
},
"overrides": {
"@prescott/tslint-preset": {
"typescript": "$typescript"
}
}
}