-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
{
"name": "ses-smtp-credentials-cdk",
"version": "3.3.0",
"description": "Create SMTP Credentials for use with SES",
"scripts": {
"compile": "tsc",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run compile && npm run compile-provider && cp -R ./provider/build/ ./lib/provider/ && cp package.json README.md ./lib",
"clean-provider": "rm -rf provider/build/",
"compile-provider": "npm run clean-provider && npx esbuild --platform=node --target=node18 --minify-syntax --external:@aws-sdk/client-iam --bundle --outdir=./provider/build ./provider/main.ts",
"lint": "eslint '*.ts' --fix",
"lint-check": "eslint '*.ts' --max-warnings 0",
"version": "auto-changelog --hide-credit -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isotoma/ses-smtp-credentials-cdk.git"
},
"author": "Isotoma Limited",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/isotoma/ses-smtp-credentials-cdk/issues"
},
"homepage": "https://github.com/isotoma/ses-smtp-credentials-cdk#readme",
"peerDependencies": {
"aws-cdk-lib": "^2.51.0",
"constructs": "^10.0.0"
},
"peerDependenciesMeta": {
"@aws-cdk/aws-cloudformation": {
"optional": true
},
"@aws-cdk/aws-iam": {
"optional": true
},
"@aws-cdk/aws-lambda": {
"optional": true
},
"@aws-cdk/core": {
"optional": true
},
"@aws-cdk/custom-resources": {
"optional": true
},
"aws-cdk-lib": {
"optional": true
},
"constructs": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^18.19.33",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"auto-changelog": "^2.2.1",
"aws-cdk-lib": "^2.51.0",
"constructs": "^10.0.0",
"esbuild": "^0.17.8",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"prettier": "1.19.1",
"typescript": "^4.9.5",
"utf8": "^3.0.0"
}
}