cdk-comprehend-s3olap 2.0.103 → 2.0.105
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.
- package/.jsii +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/backup-gateway-2021-01-01.min.json +59 -8
- package/node_modules/aws-sdk/apis/devicefarm-2015-06-23.min.json +166 -132
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +102 -96
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +3 -1
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +59 -22
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +228 -142
- package/node_modules/aws-sdk/apis/nimble-2020-08-01.waiters2.json +1 -1
- package/node_modules/aws-sdk/clients/apprunner.d.ts +1 -1
- package/node_modules/aws-sdk/clients/backupgateway.d.ts +72 -0
- package/node_modules/aws-sdk/clients/devicefarm.d.ts +38 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +78 -67
- package/node_modules/aws-sdk/clients/glue.d.ts +8 -0
- package/node_modules/aws-sdk/clients/identitystore.d.ts +8 -8
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +85 -0
- package/node_modules/aws-sdk/clients/lightsail.d.ts +66 -3
- package/node_modules/aws-sdk/clients/nimble.d.ts +14 -14
- package/node_modules/aws-sdk/clients/ssm.d.ts +1 -1
- package/node_modules/aws-sdk/clients/wafv2.d.ts +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +271 -231
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +73 -73
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/es-abstract/2015/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2015/ToNumber.js +1 -1
- package/node_modules/es-abstract/2016/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2016/ToNumber.js +1 -1
- package/node_modules/es-abstract/2017/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2017/ToNumber.js +1 -1
- package/node_modules/es-abstract/2018/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2018/ToNumber.js +1 -1
- package/node_modules/es-abstract/2019/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2019/ToNumber.js +1 -1
- package/node_modules/es-abstract/2020/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2020/ToNumber.js +1 -1
- package/node_modules/es-abstract/2021/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2021/ToNumber.js +1 -1
- package/node_modules/es-abstract/2022/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2022/StringToNumber.js +1 -1
- package/node_modules/es-abstract/CHANGELOG.md +6 -0
- package/node_modules/es-abstract/helpers/regexTester.js +2 -6
- package/node_modules/es-abstract/package.json +6 -5
- package/node_modules/esbuild/bin/esbuild +34 -9
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +41 -16
- package/node_modules/esbuild/package.json +23 -23
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/node_modules/is-callable/CHANGELOG.md +13 -0
- package/node_modules/is-callable/README.md +5 -2
- package/node_modules/is-callable/index.js +13 -7
- package/node_modules/is-callable/package.json +1 -1
- package/node_modules/is-callable/test/index.js +26 -9
- package/node_modules/safe-regex-test/.eslintrc +9 -0
- package/node_modules/safe-regex-test/.github/FUNDING.yml +12 -0
- package/node_modules/safe-regex-test/CHANGELOG.md +15 -0
- package/node_modules/safe-regex-test/LICENSE +21 -0
- package/node_modules/safe-regex-test/README.md +42 -0
- package/node_modules/safe-regex-test/index.js +17 -0
- package/node_modules/safe-regex-test/package.json +75 -0
- package/node_modules/safe-regex-test/test/index.js +37 -0
- package/package.json +10 -10
@@ -46,14 +46,16 @@ var toStr = Object.prototype.toString;
|
|
46
46
|
var objectClass = '[object Object]';
|
47
47
|
var fnClass = '[object Function]';
|
48
48
|
var genClass = '[object GeneratorFunction]';
|
49
|
-
var ddaClass = '[object HTMLAllCollection]';
|
49
|
+
var ddaClass = '[object HTMLAllCollection]'; // IE 11
|
50
|
+
var ddaClass2 = '[object HTML document.all class]';
|
51
|
+
var ddaClass3 = '[object HTMLCollection]'; // IE 9-10
|
50
52
|
var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag; // better: use `has-tostringtag`
|
51
53
|
|
52
54
|
var isIE68 = !(0 in [,]); // eslint-disable-line no-sparse-arrays, comma-spacing
|
53
55
|
|
54
56
|
var isDDA = function isDocumentDotAll() { return false; };
|
55
57
|
if (typeof document === 'object') {
|
56
|
-
// Firefox 3
|
58
|
+
// Firefox 3 canonicalizes DDA to undefined when it's not accessed directly
|
57
59
|
var all = document.all;
|
58
60
|
if (toStr.call(all) === toStr.call(document.all)) {
|
59
61
|
isDDA = function isDocumentDotAll(value) {
|
@@ -62,8 +64,12 @@ if (typeof document === 'object') {
|
|
62
64
|
if ((isIE68 || !value) && (typeof value === 'undefined' || typeof value === 'object')) {
|
63
65
|
try {
|
64
66
|
var str = toStr.call(value);
|
65
|
-
|
66
|
-
|
67
|
+
return (
|
68
|
+
str === ddaClass
|
69
|
+
|| str === ddaClass2
|
70
|
+
|| str === ddaClass3 // opera 12.16
|
71
|
+
|| str === objectClass // IE 6-8
|
72
|
+
) && value('') == null; // eslint-disable-line eqeqeq
|
67
73
|
} catch (e) { /**/ }
|
68
74
|
}
|
69
75
|
return false;
|
@@ -76,13 +82,12 @@ module.exports = reflectApply
|
|
76
82
|
if (isDDA(value)) { return true; }
|
77
83
|
if (!value) { return false; }
|
78
84
|
if (typeof value !== 'function' && typeof value !== 'object') { return false; }
|
79
|
-
if (typeof value === 'function' && !value.prototype) { return true; }
|
80
85
|
try {
|
81
86
|
reflectApply(value, null, badArrayLike);
|
82
87
|
} catch (e) {
|
83
88
|
if (e !== isCallableMarker) { return false; }
|
84
89
|
}
|
85
|
-
return !isES6ClassFn(value);
|
90
|
+
return !isES6ClassFn(value) && tryFunctionObject(value);
|
86
91
|
}
|
87
92
|
: function isCallable(value) {
|
88
93
|
if (isDDA(value)) { return true; }
|
@@ -91,5 +96,6 @@ module.exports = reflectApply
|
|
91
96
|
if (hasToStringTag) { return tryFunctionObject(value); }
|
92
97
|
if (isES6ClassFn(value)) { return false; }
|
93
98
|
var strClass = toStr.call(value);
|
94
|
-
|
99
|
+
if (strClass !== fnClass && strClass !== genClass && !(/^\[object HTML/).test(strClass)) { return false; }
|
100
|
+
return tryFunctionObject(value);
|
95
101
|
};
|
@@ -48,11 +48,8 @@ if (typeof Proxy === 'function') {
|
|
48
48
|
proxy();
|
49
49
|
String(proxy);
|
50
50
|
} catch (_) {
|
51
|
-
//
|
52
|
-
|
53
|
-
// Older engines throw a `TypeError` when `Function.prototype.toString` is called on a Proxy object.
|
54
|
-
proxy = null;
|
55
|
-
}
|
51
|
+
// Older engines throw a `TypeError` when `Function.prototype.toString` is called on a Proxy object.
|
52
|
+
proxy = null;
|
56
53
|
}
|
57
54
|
}
|
58
55
|
|
@@ -184,7 +181,7 @@ test('`async function`s', { skip: asyncs.length === 0 }, function (t) {
|
|
184
181
|
});
|
185
182
|
|
186
183
|
test('proxies of functions', { skip: !proxy }, function (t) {
|
187
|
-
t.
|
184
|
+
t.equal(isCallable(proxy), true, 'proxies of functions are callable');
|
188
185
|
t.end();
|
189
186
|
});
|
190
187
|
|
@@ -202,8 +199,14 @@ test('DOM', function (t) {
|
|
202
199
|
st.notOk(isCallable(document), 'document is not callable');
|
203
200
|
|
204
201
|
var all = document.all;
|
205
|
-
var isFF3 = Object.prototype.toString(all) === Object.prototype.toString.call(document.all);
|
206
|
-
|
202
|
+
var isFF3 = !isIE68 && Object.prototype.toString(all) === Object.prototype.toString.call(document.all); // this test is true in IE 6-8 also
|
203
|
+
var expected = false;
|
204
|
+
if (!isFF3) {
|
205
|
+
try {
|
206
|
+
expected = document.all('') == null; // eslint-disable-line eqeqeq
|
207
|
+
} catch (e) { /**/ }
|
208
|
+
}
|
209
|
+
st.equal(isCallable(document.all), expected, 'document.all is ' + (isFF3 ? 'not ' : '') + 'callable');
|
207
210
|
|
208
211
|
st.end();
|
209
212
|
});
|
@@ -217,7 +220,21 @@ test('DOM', function (t) {
|
|
217
220
|
t.test(name, { skip: !constructor }, function (st) {
|
218
221
|
st.match(typeof constructor, /^(?:function|object)$/, name + ' is a function or object');
|
219
222
|
|
220
|
-
|
223
|
+
var callable = isCallable(constructor);
|
224
|
+
st.equal(typeof callable, 'boolean');
|
225
|
+
|
226
|
+
if (callable) {
|
227
|
+
st.doesNotThrow(
|
228
|
+
function () { Function.prototype.toString.call(constructor); },
|
229
|
+
'anything this library claims is callable should be accepted by Function toString'
|
230
|
+
);
|
231
|
+
} else {
|
232
|
+
st['throws'](
|
233
|
+
function () { Function.prototype.toString.call(constructor); },
|
234
|
+
TypeError,
|
235
|
+
'anything this library claims is not callable should not be accepted by Function toString'
|
236
|
+
);
|
237
|
+
}
|
221
238
|
|
222
239
|
st.end();
|
223
240
|
});
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# These are supported funding model platforms
|
2
|
+
|
3
|
+
github: [ljharb]
|
4
|
+
patreon: # Replace with a single Patreon username
|
5
|
+
open_collective: # Replace with a single Open Collective username
|
6
|
+
ko_fi: # Replace with a single Ko-fi username
|
7
|
+
tidelift: npm/safe-regex-test
|
8
|
+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
9
|
+
liberapay: # Replace with a single Liberapay username
|
10
|
+
issuehunt: # Replace with a single IssueHunt username
|
11
|
+
otechie: # Replace with a single Otechie username
|
12
|
+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
|
+
|
8
|
+
## v1.0.0 - 2022-09-22
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- Initial implementation, tests, readme [`0273e9f`](https://github.com/ljharb/safe-regex-test/commit/0273e9f96f4b09df413523f4faacc8ae9ac5e6cb)
|
13
|
+
- Initial commit [`b6c1edf`](https://github.com/ljharb/safe-regex-test/commit/b6c1edf740e6105fb71c34c1c69fadd837e8f7ab)
|
14
|
+
- npm init [`c7f5765`](https://github.com/ljharb/safe-regex-test/commit/c7f576580607b16458b5a16e6bfa3b639e49c6bd)
|
15
|
+
- Only apps should have lockfiles [`1162bf0`](https://github.com/ljharb/safe-regex-test/commit/1162bf011835040f7e2c9936734294b2d98536bf)
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2022 Jordan Harband
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# safe-regex-test <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
|
2
|
+
|
3
|
+
[![dependency status][deps-svg]][deps-url]
|
4
|
+
[![dev dependency status][dev-deps-svg]][dev-deps-url]
|
5
|
+
[![License][license-image]][license-url]
|
6
|
+
[![Downloads][downloads-image]][downloads-url]
|
7
|
+
|
8
|
+
[![npm badge][npm-badge-png]][package-url]
|
9
|
+
|
10
|
+
Give a regex, get a robust predicate function that tests it against a string. This will work even if `RegExp.prototype` is altered later.
|
11
|
+
|
12
|
+
## Getting started
|
13
|
+
|
14
|
+
```sh
|
15
|
+
npm install --save safe-regex-test
|
16
|
+
```
|
17
|
+
|
18
|
+
## Usage/Examples
|
19
|
+
|
20
|
+
```js
|
21
|
+
var regexTester = require('safe-regex-test');
|
22
|
+
var assert = require('assert');
|
23
|
+
|
24
|
+
var tester = regexTester('a');
|
25
|
+
assert.ok(tester('a'));
|
26
|
+
assert.notOk(tester('b'));
|
27
|
+
```
|
28
|
+
|
29
|
+
## Tests
|
30
|
+
Simply clone the repo, `npm install`, and run `npm test`
|
31
|
+
|
32
|
+
[package-url]: https://npmjs.org/package/safe-regex-test
|
33
|
+
[npm-version-svg]: https://versionbadg.es/ljharb/safe-regex-test.svg
|
34
|
+
[deps-svg]: https://david-dm.org/ljharb/safe-regex-test.svg
|
35
|
+
[deps-url]: https://david-dm.org/ljharb/safe-regex-test
|
36
|
+
[dev-deps-svg]: https://david-dm.org/ljharb/safe-regex-test/dev-status.svg
|
37
|
+
[dev-deps-url]: https://david-dm.org/ljharb/safe-regex-test#info=devDependencies
|
38
|
+
[npm-badge-png]: https://nodei.co/npm/safe-regex-test.png?downloads=true&stars=true
|
39
|
+
[license-image]: https://img.shields.io/npm/l/safe-regex-test.svg
|
40
|
+
[license-url]: LICENSE
|
41
|
+
[downloads-image]: https://img.shields.io/npm/dm/safe-regex-test.svg
|
42
|
+
[downloads-url]: https://npm-stat.com/charts.html?package=safe-regex-test
|
@@ -0,0 +1,17 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
var callBound = require('call-bind/callBound');
|
4
|
+
var GetIntrinsic = require('get-intrinsic');
|
5
|
+
var isRegex = require('is-regex');
|
6
|
+
|
7
|
+
var $exec = callBound('RegExp.prototype.exec');
|
8
|
+
var $TypeError = GetIntrinsic('%TypeError%');
|
9
|
+
|
10
|
+
module.exports = function regexTester(regex) {
|
11
|
+
if (!isRegex(regex)) {
|
12
|
+
throw new $TypeError('`regex` must be a RegExp');
|
13
|
+
}
|
14
|
+
return function test(s) {
|
15
|
+
return $exec(regex, s) !== null;
|
16
|
+
};
|
17
|
+
};
|
@@ -0,0 +1,75 @@
|
|
1
|
+
{
|
2
|
+
"name": "safe-regex-test",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Give a regex, get a robust predicate function that tests it against a string.",
|
5
|
+
"main": "index.js",
|
6
|
+
"exports": {
|
7
|
+
".": "./index.js",
|
8
|
+
"./package.json": "./package.json"
|
9
|
+
},
|
10
|
+
"scripts": {
|
11
|
+
"prepack": "npmignore --auto --commentLines=autogenerated",
|
12
|
+
"version": "auto-changelog && git add CHANGELOG.md",
|
13
|
+
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
|
14
|
+
"lint": "eslint --ext=js,mjs .",
|
15
|
+
"prepublish": "not-in-publish || npm run prepublishOnly",
|
16
|
+
"prepublishOnly": "safe-publish-latest",
|
17
|
+
"pretest": "npm run lint",
|
18
|
+
"tests-only": "tape test",
|
19
|
+
"test": "npm run tests-only",
|
20
|
+
"posttest": "aud --production"
|
21
|
+
},
|
22
|
+
"repository": {
|
23
|
+
"type": "git",
|
24
|
+
"url": "git+https://github.com/ljharb/safe-regex-test.git"
|
25
|
+
},
|
26
|
+
"keywords": [
|
27
|
+
"regex",
|
28
|
+
"regexp",
|
29
|
+
"test",
|
30
|
+
"tester",
|
31
|
+
"safe",
|
32
|
+
"robust",
|
33
|
+
"exec"
|
34
|
+
],
|
35
|
+
"author": "Jordan Harband <ljharb@gmail.com>",
|
36
|
+
"funding": {
|
37
|
+
"url": "https://github.com/sponsors/ljharb"
|
38
|
+
},
|
39
|
+
"license": "MIT",
|
40
|
+
"bugs": {
|
41
|
+
"url": "https://github.com/ljharb/safe-regex-test/issues"
|
42
|
+
},
|
43
|
+
"homepage": "https://github.com/ljharb/safe-regex-test#readme",
|
44
|
+
"dependencies": {
|
45
|
+
"call-bind": "^1.0.2",
|
46
|
+
"get-intrinsic": "^1.1.3",
|
47
|
+
"is-regex": "^1.1.4"
|
48
|
+
},
|
49
|
+
"devDependencies": {
|
50
|
+
"@ljharb/eslint-config": "^21.0.0",
|
51
|
+
"aud": "^2.0.1",
|
52
|
+
"auto-changelog": "^2.4.0",
|
53
|
+
"es-value-fixtures": "^1.4.2",
|
54
|
+
"eslint": "=8.8.0",
|
55
|
+
"for-each": "^0.3.3",
|
56
|
+
"in-publish": "^2.0.1",
|
57
|
+
"npmignore": "^0.3.0",
|
58
|
+
"object-inspect": "^1.12.2",
|
59
|
+
"safe-publish-latest": "^2.0.0",
|
60
|
+
"tape": "^5.6.1"
|
61
|
+
},
|
62
|
+
"auto-changelog": {
|
63
|
+
"output": "CHANGELOG.md",
|
64
|
+
"template": "keepachangelog",
|
65
|
+
"unreleased": false,
|
66
|
+
"commitLimit": false,
|
67
|
+
"backfillLimit": false,
|
68
|
+
"hideCredit": true
|
69
|
+
},
|
70
|
+
"publishConfig": {
|
71
|
+
"ignore": [
|
72
|
+
".github/workflows"
|
73
|
+
]
|
74
|
+
}
|
75
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
var test = require('tape');
|
4
|
+
var v = require('es-value-fixtures');
|
5
|
+
var forEach = require('for-each');
|
6
|
+
var inspect = require('object-inspect');
|
7
|
+
|
8
|
+
var regexTester = require('../');
|
9
|
+
|
10
|
+
test('regex tester', function (t) {
|
11
|
+
t.equal(typeof regexTester, 'function', 'is a function');
|
12
|
+
|
13
|
+
t.test('non-regexes', function (st) {
|
14
|
+
forEach(v.primitives.concat(v.objects), function (val) {
|
15
|
+
st['throws'](
|
16
|
+
function () { regexTester(val); },
|
17
|
+
TypeError,
|
18
|
+
inspect(val) + ' is not a regex'
|
19
|
+
);
|
20
|
+
});
|
21
|
+
|
22
|
+
st.end();
|
23
|
+
});
|
24
|
+
|
25
|
+
t.test('regexes', function (st) {
|
26
|
+
var tester = regexTester(/a/);
|
27
|
+
|
28
|
+
st.equal(typeof tester, 'function', 'returns a function');
|
29
|
+
st.equal(tester('a'), true, 'returns true for a match');
|
30
|
+
st.equal(tester('b'), false, 'returns false for a non-match');
|
31
|
+
st.equal(tester('a'), true, 'returns true for a match again');
|
32
|
+
|
33
|
+
st.end();
|
34
|
+
});
|
35
|
+
|
36
|
+
t.end();
|
37
|
+
});
|
package/package.json
CHANGED
@@ -44,22 +44,22 @@
|
|
44
44
|
"@types/node": "^14",
|
45
45
|
"@typescript-eslint/eslint-plugin": "^5",
|
46
46
|
"@typescript-eslint/parser": "^5",
|
47
|
-
"aws-cdk-lib": "^2.43.
|
47
|
+
"aws-cdk-lib": "^2.43.1",
|
48
48
|
"constructs": "^10.0.5",
|
49
|
-
"esbuild": "^0.15.
|
49
|
+
"esbuild": "^0.15.9",
|
50
50
|
"eslint": "^8",
|
51
51
|
"eslint-import-resolver-node": "^0.3.6",
|
52
52
|
"eslint-import-resolver-typescript": "^2.7.1",
|
53
53
|
"eslint-plugin-import": "^2.26.0",
|
54
54
|
"jest": "^27",
|
55
55
|
"jest-junit": "^13",
|
56
|
-
"jsii": "^1.
|
57
|
-
"jsii-diff": "^1.
|
56
|
+
"jsii": "^1.68.0",
|
57
|
+
"jsii-diff": "^1.68.0",
|
58
58
|
"jsii-docgen": "^1.8.110",
|
59
|
-
"jsii-pacmak": "^1.
|
59
|
+
"jsii-pacmak": "^1.68.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.62.
|
62
|
+
"projen": "^0.62.18",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
65
|
"typescript": "^4.8.3"
|
@@ -69,10 +69,10 @@
|
|
69
69
|
"constructs": "^10.0.5"
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
|
-
"aws-cdk-lib": "^2.43.
|
73
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-cdk-lib": "^2.43.1",
|
73
|
+
"aws-sdk": "^2.1223.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
|
-
"esbuild": "^0.15.
|
75
|
+
"esbuild": "^0.15.9"
|
76
76
|
},
|
77
77
|
"bundledDependencies": [
|
78
78
|
"aws-sdk",
|
@@ -92,7 +92,7 @@
|
|
92
92
|
],
|
93
93
|
"main": "lib/index.js",
|
94
94
|
"license": "Apache-2.0",
|
95
|
-
"version": "2.0.
|
95
|
+
"version": "2.0.105",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|