-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 990 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 990 Bytes
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
{
"packageManager": "npm@10.2.5",
"name": "cdk-lambda-ruby",
"version": "0.2.0",
"description": "CDK Construct Library for AWS Lambda in Ruby",
"keywords": [
"aws",
"cdk",
"constructs",
"lambda",
"ruby"
],
"homepage": "https://github.com/hanazuki/cdk-lambda-ruby#readme",
"bugs": "https://github.com/hanazuki/cdk-lambda-ruby/issues",
"repository": {
"type": "git",
"url": "https://github.com/hanazuki/cdk-lambda-ruby.git"
},
"license": "MIT",
"author": {
"name": "Kasumi Hanazuki",
"email": "kasumi@rollingapple.net"
},
"scripts": {
"prepare": "tsc"
},
"files": [
"*.md",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.sh"
],
"main": "lib/index.js",
"types": "lib",
"peerDependencies": {
"aws-cdk-lib": "^2.37.1",
"constructs": "^10.1.72"
},
"devDependencies": {
"@types/node": "^20.10.5",
"aws-cdk-lib": "^2.117.0",
"constructs": "^10.3.0",
"typescript": "^5.3.3"
}
}