-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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
69
70
71
72
73
74
75
76
{
"name": "idea-aws",
"version": "4.4.17",
"description": "AWS wrappers to use in IDEA's back-ends",
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .ts",
"compile": "tsc --build",
"docs": "typedoc index.ts --customCss ./docs.style.css",
"build": "./build.sh",
"publishPackage": "./build.sh && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iter-idea/IDEA-AWS.git"
},
"keywords": [
"idea",
"aws",
"dynamo",
"ses",
"s3",
"sns",
"lambda",
"translate",
"cognito",
"comprehend",
"secretsManager",
"cloudWatch",
"ssm"
],
"author": "ITER IDEA <[email protected]> (https://iter-idea.com)",
"bugs": {
"url": "https://github.com/iter-idea/IDEA-AWS/issues"
},
"homepage": "https://iter-idea.github.io/IDEA-AWS",
"dependencies": {
"@aws-lambda-powertools/metrics": "^1.18.1",
"@aws-lambda-powertools/tracer": "^1.18.1",
"idea-toolbox": "^7.0.11",
"nanoid": "^3.3.7",
"nodemailer": "^6.9.14",
"source-map-support": "^0.5.21"
},
"peerDependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.616.0",
"@aws-sdk/client-comprehend": "^3.616.0",
"@aws-sdk/client-dynamodb": "^3.616.0",
"@aws-sdk/client-eventbridge": "^3.616.0",
"@aws-sdk/client-lambda": "^3.616.0",
"@aws-sdk/client-s3": "^3.614.0",
"@aws-sdk/client-secrets-manager": "^3.616.0",
"@aws-sdk/client-ses": "^3.616.0",
"@aws-sdk/client-sesv2": "^3.616.0",
"@aws-sdk/client-sns": "^3.616.0",
"@aws-sdk/client-ssm": "^3.616.0",
"@aws-sdk/client-translate": "^3.616.0",
"@aws-sdk/lib-dynamodb": "^3.616.0",
"@aws-sdk/lib-storage": "^3.616.0",
"@aws-sdk/s3-request-presigner": "^3.616.0",
"@aws-sdk/util-dynamodb": "^3.616.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/aws-lambda": "^8.10.141",
"@types/node": "^20.14.11",
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"typedoc": "^0.26.5",
"typescript": "^5.5.2"
}
}