-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 KB
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
{
"name": "aws-cdk-util",
"version": "0.4.26",
"description": "Utility for AWS CDK",
"author": "Kengo Nakatsuka <kengo.nakatsuka@gmail.com>",
"bugs": {
"url": "https://github.com/nak2k/node-aws-cdk-util/issues"
},
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.940.0",
"@aws-sdk/client-cloudwatch-logs": "^3.940.0",
"@aws-sdk/client-codebuild": "^3.940.0",
"@aws-sdk/client-cognito-identity-provider": "^3.940.0",
"@aws-sdk/client-lambda": "^3.940.0",
"@aws-sdk/client-secrets-manager": "^3.940.0",
"@aws-sdk/client-ssm": "^3.940.0",
"@types/aws-lambda": "^8.10.159",
"@types/node": "^24.10.1",
"aws-cdk-lib": "^2.230.0",
"constructs": "^10.4.3",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"aws-cdk-lib": "^2.32.0",
"constructs": "^10.1.16"
},
"homepage": "https://github.com/nak2k/node-aws-cdk-util",
"keywords": [
"aws",
"cdk"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "git+https://github.com/nak2k/node-aws-cdk-util.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepublishOnly": "run-s test",
"postpublish": "npm-sns",
"pretest": "run-s clean build",
"test": "",
"watch": "tsc -w"
},
"files": [
"README.md",
"lib/"
]
}