-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "cdk-lambda-fleet",
"version": "1.3.2",
"description": "Deploy multiple AWS Lambda functions as docker images using AWS Cloud Development Kit",
"main": "aws/constructs/LambdaFleet.js",
"types": "aws/constructs/LambdaFleet.d.ts",
"license": "MIT",
"author": "Sebastian Müller <mail@sbstjn.com> (https://sbstjn.com)",
"homepage": "https://github.com/sbstjn/cdk-lambda-fleet",
"repository": {
"type": "git",
"url": "https://github.com/sbstjn/cdk-lambda-fleet.git"
},
"keywords": [
"aws",
"aws-cdk",
"cdk",
"construct",
"lambda",
"docker",
"serverless"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"predeploy": "yarn build",
"deploy": "cdk deploy"
},
"devDependencies": {
"@aws-cdk/assert": "1.76.0",
"@aws-cdk/aws-ecr": "^1.76.0",
"@aws-cdk/aws-lambda": "^1.76.0",
"@aws-cdk/core": "1.76.0",
"@types/camelcase": "^5.2.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk": "1.76.0",
"camelcase": "^6.2.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
}
}