@aws-cdk/integ-runner 2.178.1-alpha.0 → 2.179.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -768,6 +768,26 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
768
768
  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
769
769
 
770
770
 
771
+ ----------------
772
+
773
+ ** semver@7.7.1 - https://www.npmjs.com/package/semver/v/7.7.1 | ISC
774
+ The ISC License
775
+
776
+ Copyright (c) Isaac Z. Schlueter and Contributors
777
+
778
+ Permission to use, copy, modify, and/or distribute this software for any
779
+ purpose with or without fee is hereby granted, provided that the above
780
+ copyright notice and this permission notice appear in all copies.
781
+
782
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
783
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
784
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
785
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
786
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
787
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
788
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
789
+
790
+
771
791
  ----------------
772
792
 
773
793
  ** slice-ansi@4.0.0 - https://www.npmjs.com/package/slice-ansi/v/4.0.0 | MIT
@@ -5,6 +5,9 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __getProtoOf = Object.getPrototypeOf;
7
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __typeError = (msg) => {
9
+ throw TypeError(msg);
10
+ };
8
11
  var __esm = (fn, res) => function __init() {
9
12
  return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
10
13
  };
@@ -32,6 +35,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
32
35
  mod
33
36
  ));
34
37
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
38
+ var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
39
+ var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
40
+ var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
41
+ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
35
42
 
36
43
  // ../../../node_modules/workerpool/src/requireFoolWebpack.js
37
44
  var require_requireFoolWebpack = __commonJS({
@@ -7128,6 +7135,36 @@ var require_lib3 = __commonJS({
7128
7135
  }
7129
7136
  });
7130
7137
 
7138
+ // ../cx-api/lib/private/error.ts
7139
+ var ASSEMBLY_ERROR_SYMBOL, _time, _CloudAssemblyError, CloudAssemblyError;
7140
+ var init_error = __esm({
7141
+ "../cx-api/lib/private/error.ts"() {
7142
+ "use strict";
7143
+ ASSEMBLY_ERROR_SYMBOL = Symbol.for("@aws-cdk/cx-api.CloudAssemblyError");
7144
+ _CloudAssemblyError = class _CloudAssemblyError extends Error {
7145
+ constructor(msg) {
7146
+ super(msg);
7147
+ __privateAdd(this, _time);
7148
+ Object.setPrototypeOf(this, _CloudAssemblyError.prototype);
7149
+ Object.defineProperty(this, ASSEMBLY_ERROR_SYMBOL, { value: true });
7150
+ this.name = new.target.name;
7151
+ __privateSet(this, _time, (/* @__PURE__ */ new Date()).toISOString());
7152
+ }
7153
+ /**
7154
+ * The time the error was thrown.
7155
+ */
7156
+ get time() {
7157
+ return __privateGet(this, _time);
7158
+ }
7159
+ get type() {
7160
+ return "assembly";
7161
+ }
7162
+ };
7163
+ _time = new WeakMap();
7164
+ CloudAssemblyError = _CloudAssemblyError;
7165
+ }
7166
+ });
7167
+
7131
7168
  // ../cx-api/lib/cloud-artifact.ts
7132
7169
  var cloud_artifact_exports = {};
7133
7170
  __export(cloud_artifact_exports, {
@@ -7139,6 +7176,7 @@ var init_cloud_artifact = __esm({
7139
7176
  "use strict";
7140
7177
  init_metadata();
7141
7178
  cxschema = __toESM(require_lib3());
7179
+ init_error();
7142
7180
  CloudArtifact = class {
7143
7181
  constructor(assembly, id, manifest) {
7144
7182
  this.assembly = assembly;
@@ -7156,8 +7194,8 @@ var init_cloud_artifact = __esm({
7156
7194
  * @returns the `CloudArtifact` that matches the artifact type or `undefined` if it's an artifact type that is unrecognized by this module.
7157
7195
  */
7158
7196
  static fromManifest(assembly, id, artifact) {
7159
- void 0, void 0, void 0;
7160
- throw new Error("Implementation not overridden yet");
7197
+ void assembly, void id, void artifact;
7198
+ throw new CloudAssemblyError("Implementation not overridden yet");
7161
7199
  }
7162
7200
  /**
7163
7201
  * Returns all the artifacts that this artifact depends on.
@@ -7169,7 +7207,7 @@ var init_cloud_artifact = __esm({
7169
7207
  this._deps = this._dependencyIDs.map((id) => {
7170
7208
  const dep = this.assembly.tryGetArtifact(id);
7171
7209
  if (!dep) {
7172
- throw new Error(`Artifact ${this.id} depends on non-existing artifact ${id}`);
7210
+ throw new CloudAssemblyError(`Artifact ${this.id} depends on non-existing artifact ${id}`);
7173
7211
  }
7174
7212
  return dep;
7175
7213
  });
@@ -7236,6 +7274,7 @@ var init_asset_manifest_artifact = __esm({
7236
7274
  fs = __toESM(require("fs"));
7237
7275
  path = __toESM(require("path"));
7238
7276
  init_cloud_artifact();
7277
+ init_error();
7239
7278
  ASSET_MANIFEST_ARTIFACT_SYM = Symbol.for("@aws-cdk/cx-api.AssetManifestArtifact");
7240
7279
  AssetManifestArtifact = class extends CloudArtifact {
7241
7280
  /**
@@ -7262,7 +7301,7 @@ var init_asset_manifest_artifact = __esm({
7262
7301
  super(assembly, name, artifact);
7263
7302
  const properties = this.manifest.properties || {};
7264
7303
  if (!properties.file) {
7265
- throw new Error('Invalid AssetManifestArtifact. Missing "file" property');
7304
+ throw new CloudAssemblyError('Invalid AssetManifestArtifact. Missing "file" property');
7266
7305
  }
7267
7306
  this.file = path.resolve(this.assembly.directory, properties.file);
7268
7307
  this.requiresBootstrapStackVersion = properties.requiresBootstrapStackVersion;
@@ -7298,6 +7337,7 @@ var AWS_ENV_REGEX, UNKNOWN_ACCOUNT, UNKNOWN_REGION, EnvironmentUtils;
7298
7337
  var init_environment = __esm({
7299
7338
  "../cx-api/lib/environment.ts"() {
7300
7339
  "use strict";
7340
+ init_error();
7301
7341
  AWS_ENV_REGEX = /aws\:\/\/([a-z0-9A-Z\-\@\.\_]+)\/([a-z\-0-9]+)/;
7302
7342
  UNKNOWN_ACCOUNT = "unknown-account";
7303
7343
  UNKNOWN_REGION = "unknown-region";
@@ -7305,13 +7345,13 @@ var init_environment = __esm({
7305
7345
  static parse(environment) {
7306
7346
  const env = AWS_ENV_REGEX.exec(environment);
7307
7347
  if (!env) {
7308
- throw new Error(
7348
+ throw new CloudAssemblyError(
7309
7349
  `Unable to parse environment specification "${environment}". Expected format: aws://account/region`
7310
7350
  );
7311
7351
  }
7312
7352
  const [, account, region] = env;
7313
7353
  if (!account || !region) {
7314
- throw new Error(`Invalid environment specification: ${environment}`);
7354
+ throw new CloudAssemblyError(`Invalid environment specification: ${environment}`);
7315
7355
  }
7316
7356
  return { account, region, name: environment };
7317
7357
  }
@@ -7345,6 +7385,7 @@ var init_cloudformation_artifact = __esm({
7345
7385
  cxschema2 = __toESM(require_lib3());
7346
7386
  init_cloud_artifact();
7347
7387
  init_environment();
7388
+ init_error();
7348
7389
  CLOUDFORMATION_STACK_ARTIFACT_SYM = Symbol.for("@aws-cdk/cx-api.CloudFormationStackArtifact");
7349
7390
  CloudFormationStackArtifact = class extends CloudArtifact {
7350
7391
  /**
@@ -7371,10 +7412,10 @@ var init_cloudformation_artifact = __esm({
7371
7412
  super(assembly, artifactId, artifact);
7372
7413
  const properties = this.manifest.properties || {};
7373
7414
  if (!properties.templateFile) {
7374
- throw new Error('Invalid CloudFormation stack artifact. Missing "templateFile" property in cloud assembly manifest');
7415
+ throw new CloudAssemblyError('Invalid CloudFormation stack artifact. Missing "templateFile" property in cloud assembly manifest');
7375
7416
  }
7376
7417
  if (!artifact.environment) {
7377
- throw new Error("Invalid CloudFormation stack artifact. Missing environment");
7418
+ throw new CloudAssemblyError("Invalid CloudFormation stack artifact. Missing environment");
7378
7419
  }
7379
7420
  this.environment = EnvironmentUtils.parse(artifact.environment);
7380
7421
  this.templateFile = properties.templateFile;
@@ -7494,6 +7535,7 @@ var init_tree_cloud_artifact = __esm({
7494
7535
  "../cx-api/lib/artifacts/tree-cloud-artifact.ts"() {
7495
7536
  "use strict";
7496
7537
  init_cloud_artifact();
7538
+ init_error();
7497
7539
  TREE_CLOUD_ARTIFACT_SYM = Symbol.for("@aws-cdk/cx-api.TreeCloudArtifact");
7498
7540
  TreeCloudArtifact = class extends CloudArtifact {
7499
7541
  /**
@@ -7520,7 +7562,7 @@ var init_tree_cloud_artifact = __esm({
7520
7562
  super(assembly, name, artifact);
7521
7563
  const properties = this.manifest.properties || {};
7522
7564
  if (!properties.file) {
7523
- throw new Error('Invalid TreeCloudArtifact. Missing "file" property');
7565
+ throw new CloudAssemblyError('Invalid TreeCloudArtifact. Missing "file" property');
7524
7566
  }
7525
7567
  this.file = properties.file;
7526
7568
  }
@@ -7578,7 +7620,7 @@ function topologicalSort(xs, keyFn, depFn) {
7578
7620
  remaining.delete(selected.key);
7579
7621
  }
7580
7622
  if (selectable.length === 0) {
7581
- throw new Error(`Could not determine ordering between: ${Array.from(remaining.keys()).join(", ")}`);
7623
+ throw new CloudAssemblyError(`Could not determine ordering between: ${Array.from(remaining.keys()).join(", ")}`);
7582
7624
  }
7583
7625
  }
7584
7626
  return ret;
@@ -7586,6 +7628,7 @@ function topologicalSort(xs, keyFn, depFn) {
7586
7628
  var init_toposort = __esm({
7587
7629
  "../cx-api/lib/toposort.ts"() {
7588
7630
  "use strict";
7631
+ init_error();
7589
7632
  }
7590
7633
  });
7591
7634
 
@@ -7620,7 +7663,7 @@ function determineOutputDirectory(outdir) {
7620
7663
  function ensureDirSync(dir) {
7621
7664
  if (fs3.existsSync(dir)) {
7622
7665
  if (!fs3.statSync(dir).isDirectory()) {
7623
- throw new Error(`${dir} must be a directory`);
7666
+ throw new CloudAssemblyError(`${dir} must be a directory`);
7624
7667
  }
7625
7668
  } else {
7626
7669
  fs3.mkdirSync(dir, { recursive: true });
@@ -7639,6 +7682,7 @@ var init_cloud_assembly = __esm({
7639
7682
  init_cloud_artifact();
7640
7683
  init_toposort();
7641
7684
  cxschema4 = __toESM(require_lib3());
7685
+ init_error();
7642
7686
  CLOUD_ASSEMBLY_SYMBOL = Symbol.for("@aws-cdk/cx-api.CloudAssembly");
7643
7687
  MANIFEST_FILE = "manifest.json";
7644
7688
  CloudAssembly = class {
@@ -7685,10 +7729,10 @@ var init_cloud_assembly = __esm({
7685
7729
  getStackByName(stackName) {
7686
7730
  const artifacts = this.artifacts.filter((a) => a instanceof CloudFormationStackArtifact && a.stackName === stackName);
7687
7731
  if (!artifacts || artifacts.length === 0) {
7688
- throw new Error(`Unable to find stack with stack name "${stackName}"`);
7732
+ throw new CloudAssemblyError(`Unable to find stack with stack name "${stackName}"`);
7689
7733
  }
7690
7734
  if (artifacts.length > 1) {
7691
- throw new Error(`There are multiple stacks with the stack name "${stackName}" (${artifacts.map((a) => a.id).join(",")}). Use "getStackArtifact(id)" instead`);
7735
+ throw new CloudAssemblyError(`There are multiple stacks with the stack name "${stackName}" (${artifacts.map((a) => a.id).join(",")}). Use "getStackArtifact(id)" instead`);
7692
7736
  }
7693
7737
  return artifacts[0];
7694
7738
  }
@@ -7709,10 +7753,10 @@ var init_cloud_assembly = __esm({
7709
7753
  getStackArtifact(artifactId) {
7710
7754
  const artifact = this.tryGetArtifactRecursively(artifactId);
7711
7755
  if (!artifact) {
7712
- throw new Error(`Unable to find artifact with id "${artifactId}"`);
7756
+ throw new CloudAssemblyError(`Unable to find artifact with id "${artifactId}"`);
7713
7757
  }
7714
7758
  if (!(artifact instanceof CloudFormationStackArtifact)) {
7715
- throw new Error(`Artifact ${artifactId} is not a CloudFormation stack`);
7759
+ throw new CloudAssemblyError(`Artifact ${artifactId} is not a CloudFormation stack`);
7716
7760
  }
7717
7761
  return artifact;
7718
7762
  }
@@ -7741,10 +7785,10 @@ var init_cloud_assembly = __esm({
7741
7785
  getNestedAssemblyArtifact(artifactId) {
7742
7786
  const artifact = this.tryGetArtifact(artifactId);
7743
7787
  if (!artifact) {
7744
- throw new Error(`Unable to find artifact with id "${artifactId}"`);
7788
+ throw new CloudAssemblyError(`Unable to find artifact with id "${artifactId}"`);
7745
7789
  }
7746
7790
  if (!(artifact instanceof NestedCloudAssemblyArtifact)) {
7747
- throw new Error(`Found artifact '${artifactId}' but it's not a nested cloud assembly`);
7791
+ throw new CloudAssemblyError(`Found artifact '${artifactId}' but it's not a nested cloud assembly`);
7748
7792
  }
7749
7793
  return artifact;
7750
7794
  }
@@ -7766,11 +7810,11 @@ var init_cloud_assembly = __esm({
7766
7810
  if (trees.length === 0) {
7767
7811
  return void 0;
7768
7812
  } else if (trees.length > 1) {
7769
- throw new Error(`Multiple artifacts of type ${cxschema4.ArtifactType.CDK_TREE} found in manifest`);
7813
+ throw new CloudAssemblyError(`Multiple artifacts of type ${cxschema4.ArtifactType.CDK_TREE} found in manifest`);
7770
7814
  }
7771
7815
  const tree = trees[0];
7772
7816
  if (!(tree instanceof TreeCloudArtifact)) {
7773
- throw new Error('"Tree" artifact is not of expected type');
7817
+ throw new CloudAssemblyError('"Tree" artifact is not of expected type');
7774
7818
  }
7775
7819
  return tree;
7776
7820
  }
@@ -14043,6 +14087,7 @@ var require_re2 = __commonJS({
14043
14087
  var re = exports2.re = [];
14044
14088
  var safeRe = exports2.safeRe = [];
14045
14089
  var src = exports2.src = [];
14090
+ var safeSrc = exports2.safeSrc = [];
14046
14091
  var t = exports2.t = {};
14047
14092
  var R = 0;
14048
14093
  var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
@@ -14063,6 +14108,7 @@ var require_re2 = __commonJS({
14063
14108
  debug(name, index, value);
14064
14109
  t[name] = index;
14065
14110
  src[index] = value;
14111
+ safeSrc[index] = safe;
14066
14112
  re[index] = new RegExp(value, isGlobal ? "g" : void 0);
14067
14113
  safeRe[index] = new RegExp(safe, isGlobal ? "g" : void 0);
14068
14114
  };
@@ -14159,7 +14205,7 @@ var require_semver3 = __commonJS({
14159
14205
  "../../../node_modules/cdk-assets/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/classes/semver.js"(exports2, module2) {
14160
14206
  var debug = require_debug2();
14161
14207
  var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants2();
14162
- var { safeRe: re, t } = require_re2();
14208
+ var { safeRe: re, safeSrc: src, t } = require_re2();
14163
14209
  var parseOptions = require_parse_options2();
14164
14210
  var { compareIdentifiers } = require_identifiers2();
14165
14211
  var SemVer = class _SemVer {
@@ -14299,6 +14345,18 @@ var require_semver3 = __commonJS({
14299
14345
  // preminor will bump the version up to the next minor release, and immediately
14300
14346
  // down to pre-release. premajor and prepatch work the same way.
14301
14347
  inc(release, identifier, identifierBase) {
14348
+ if (release.startsWith("pre")) {
14349
+ if (!identifier && identifierBase === false) {
14350
+ throw new Error("invalid increment argument: identifier is empty");
14351
+ }
14352
+ if (identifier) {
14353
+ const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`);
14354
+ const match = `-${identifier}`.match(r);
14355
+ if (!match || match[1] !== identifier) {
14356
+ throw new Error(`invalid identifier: ${identifier}`);
14357
+ }
14358
+ }
14359
+ }
14302
14360
  switch (release) {
14303
14361
  case "premajor":
14304
14362
  this.prerelease.length = 0;
@@ -14326,6 +14384,12 @@ var require_semver3 = __commonJS({
14326
14384
  }
14327
14385
  this.inc("pre", identifier, identifierBase);
14328
14386
  break;
14387
+ case "release":
14388
+ if (this.prerelease.length === 0) {
14389
+ throw new Error(`version ${this.raw} is not a prerelease`);
14390
+ }
14391
+ this.prerelease.length = 0;
14392
+ break;
14329
14393
  case "major":
14330
14394
  if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) {
14331
14395
  this.major++;
@@ -14351,9 +14415,6 @@ var require_semver3 = __commonJS({
14351
14415
  // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.
14352
14416
  case "pre": {
14353
14417
  const base = Number(identifierBase) ? 1 : 0;
14354
- if (!identifier && identifierBase === false) {
14355
- throw new Error("invalid increment argument: identifier is empty");
14356
- }
14357
14418
  if (this.prerelease.length === 0) {
14358
14419
  this.prerelease = [base];
14359
14420
  } else {
@@ -14488,13 +14549,12 @@ var require_diff2 = __commonJS({
14488
14549
  if (!lowVersion.patch && !lowVersion.minor) {
14489
14550
  return "major";
14490
14551
  }
14491
- if (highVersion.patch) {
14552
+ if (lowVersion.compareMain(highVersion) === 0) {
14553
+ if (lowVersion.minor && !lowVersion.patch) {
14554
+ return "minor";
14555
+ }
14492
14556
  return "patch";
14493
14557
  }
14494
- if (highVersion.minor) {
14495
- return "minor";
14496
- }
14497
- return "major";
14498
14558
  }
14499
14559
  const prefix = highHasPre ? "pre" : "";
14500
14560
  if (v1.major !== v2.major) {
@@ -17903,7 +17963,7 @@ ${errors.map((e) => e.stack).join("\n")}`);
17903
17963
  };
17904
17964
  exports2.Manifest = Manifest5;
17905
17965
  _a = JSII_RTTI_SYMBOL_1;
17906
- Manifest5[_a] = { fqn: "@aws-cdk/cloud-assembly-schema.Manifest", version: "39.2.3" };
17966
+ Manifest5[_a] = { fqn: "@aws-cdk/cloud-assembly-schema.Manifest", version: "39.2.20" };
17907
17967
  function mapValues(xs, fn) {
17908
17968
  if (!xs) {
17909
17969
  return void 0;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-cdk/integ-runner",
3
3
  "description": "CDK Integration Testing Tool",
4
- "version": "2.178.1-alpha.0",
4
+ "version": "2.179.0-alpha.0",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
7
  "bin": {
@@ -57,9 +57,9 @@
57
57
  },
58
58
  "license": "Apache-2.0",
59
59
  "devDependencies": {
60
- "@aws-cdk/cdk-build-tools": "2.178.1-alpha.0",
61
- "aws-cdk-lib": "2.178.1",
62
- "@aws-cdk/pkglint": "2.178.1-alpha.0",
60
+ "@aws-cdk/cdk-build-tools": "2.179.0-alpha.0",
61
+ "aws-cdk-lib": "2.179.0",
62
+ "@aws-cdk/pkglint": "2.179.0-alpha.0",
63
63
  "@types/fs-extra": "^9.0.13",
64
64
  "@types/jest": "^29.5.12",
65
65
  "@types/mock-fs": "^4.13.4",
@@ -71,12 +71,12 @@
71
71
  "ts-node": "^10.9.2",
72
72
  "chokidar": "^3.6.0",
73
73
  "@aws-cdk/cloud-assembly-schema": "^39.2.0",
74
- "@aws-cdk/cloudformation-diff": "2.178.1",
75
- "@aws-cdk/cx-api": "2.178.1",
74
+ "@aws-cdk/cloudformation-diff": "2.179.0",
75
+ "@aws-cdk/cx-api": "2.179.0",
76
76
  "@aws-cdk/aws-service-spec": "^0.1.51",
77
- "cdk-assets": "3.0.0-rc.127",
78
- "@aws-cdk/cdk-cli-wrapper": "2.178.1-alpha.0",
79
- "aws-cdk": "2.178.1",
77
+ "cdk-assets": "3.0.0-rc.143",
78
+ "@aws-cdk/cdk-cli-wrapper": "2.179.0-alpha.0",
79
+ "aws-cdk": "2.179.0",
80
80
  "chalk": "^4",
81
81
  "fs-extra": "^9.1.0",
82
82
  "workerpool": "^6.5.1",
@@ -84,7 +84,7 @@
84
84
  },
85
85
  "dependencies": {
86
86
  "@aws-cdk/aws-service-spec": "0.1.51",
87
- "aws-cdk": "2.178.1"
87
+ "aws-cdk": "2.179.0"
88
88
  },
89
89
  "repository": {
90
90
  "url": "https://github.com/aws/aws-cdk.git",