forked from cloudcomponents/cdk-constructs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.35 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@cloudcomponents/cdk-blue-green-container-deployment",
"version": "1.41.0",
"description": "Blue green container deployment with CodeDeploy",
"license": "MIT",
"author": {
"name": "hupe1980",
"url": "https://github.com/hupe1980"
},
"awscdkio": {
"twitter": "hupe1980"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudcomponents/cdk-constructs.git",
"directory": "packages/cdk-blue-green-deployment"
},
"homepage": "https://github.com/cloudcomponents/cdk-constructs",
"keywords": [
"aws",
"cdk",
"ecr",
"docker",
"ecs",
"codedeploy",
"blue green",
"@cloudcomponents"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
".jsii"
],
"scripts": {
"build": "cdkdx build",
"watch": "cdkdx build -w",
"test": "cdkdx test",
"lint": "cdkdx lint",
"upgrade:cdk": "cdkdx upgrade-cdk",
"package": "cdkdx package",
"docgen": "cdkdx docgen",
"release:npm": "cdkdx release npm",
"release:pypi": "cdkdx release pypi"
},
"jsii": {
"outdir": "dist",
"tsc": {
"outDir": "lib",
"rootDir": "src"
},
"excludeTypescript": [
"src/lambdas",
"src/**/__tests__"
],
"targets": {
"python": {
"distName": "cloudcomponents.cdk-blue-green-container-deployment",
"module": "cloudcomponents.cdk_blue_green_container_deployment"
}
}
},
"peerDependencies": {
"@aws-cdk/aws-codebuild": "^1.121.0",
"@aws-cdk/aws-codedeploy": "^1.121.0",
"@aws-cdk/aws-ec2": "^1.121.0",
"@aws-cdk/aws-ecr": "^1.121.0",
"@aws-cdk/aws-ecs": "^1.121.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.121.0",
"@aws-cdk/aws-iam": "^1.121.0",
"@aws-cdk/core": "^1.121.0",
"constructs": "^3.2.0"
},
"dependencies": {
"@aws-cdk/aws-codebuild": "^1.121.0",
"@aws-cdk/aws-codedeploy": "^1.121.0",
"@aws-cdk/aws-ec2": "^1.121.0",
"@aws-cdk/aws-ecr": "^1.121.0",
"@aws-cdk/aws-ecs": "^1.121.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.121.0",
"@aws-cdk/aws-iam": "^1.121.0",
"@aws-cdk/core": "^1.121.0"
},
"devDependencies": {
"@aws-cdk/assert": "^1.121.0",
"aws-sdk": "^2.974.0",
"jest-cdk-snapshot": "^1.4.2"
},
"externals": [
"aws-sdk"
],
"gitHead": "b1ac0776c6169c1ca4a1434cad09d99c0ecb41ab"
}