-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.53 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
{
"name": "@reapit-cdk/email-receiver-client",
"main": "src/index.ts",
"version": "0.0.0",
"homepage": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/modules/email-receiver-client",
"readme": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/modules/email-receiver-client/readme.md",
"description": "This module helps you write tests which rely on receiving emails. Once you have set up [@reapit-cdk/email-receiver](../../constructs/email-receiver/), this module helps you interact with the dynamodb table it creates. You'll have to export the table arn and domain name from your stack and import them to be used here, using [something like this](https://gist.github.com/joshbalfour/c0deb95f1e5938434ed6f6117dec8662).",
"bugs": {
"url": "https://github.com/reapit/ts-cdk-constructs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/reapit/ts-cdk-constructs.git"
},
"license": "MIT",
"publishConfig": {
"main": "dist/index.js"
},
"scripts": {
"publish": "yarn npm publish",
"check": "yarn run root:check -p $(pwd)",
"lint": "reapit-cdk-eslint",
"test": "yarn run root:test -- $(pwd)",
"build": "reapit-cdk-tsup",
"prepack": "yarn build"
},
"devDependencies": {
"@reapit-cdk/eslint-config": "workspace:^",
"@reapit-cdk/tsup": "workspace:^",
"@types/aws-lambda": "^8.10.121",
"aws-lambda": "^1.0.7"
},
"dependencies": {
"@aws-sdk/util-arn-parser": "^3.310.0",
"@reapit-cdk/email-receiver-types": "workspace:^"
}
}