Skip to content

Commit 15aa1ef

Browse files
committedFeb 6, 2023
chore: update dependencies
1 parent 155000f commit 15aa1ef

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed
 

‎package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -47,30 +47,30 @@
4747
"preset": "./jest-preset.js"
4848
},
4949
"dependencies": {
50-
"@aws-sdk/client-dynamodb": "3.113.0",
51-
"@aws-sdk/lib-dynamodb": "3.113.0",
52-
"@aws-sdk/util-dynamodb": "3.113.0",
50+
"@aws-sdk/client-dynamodb": "3.264.0",
51+
"@aws-sdk/lib-dynamodb": "3.264.0",
52+
"@aws-sdk/util-dynamodb": "3.264.0",
5353
"cwd": "0.10.0",
5454
"debug": "4.3.4",
5555
"dynamodb-local": "0.0.31"
5656
},
5757
"devDependencies": {
58-
"@babel/cli": "7.19.3",
58+
"@babel/cli": "7.20.7",
5959
"@babel/core": "7.20.12",
6060
"@shelf/babel-config": "1.2.0",
61-
"@shelf/eslint-config": "2.22.0",
61+
"@shelf/eslint-config": "2.27.1",
6262
"@shelf/prettier-config": "1.0.0",
63-
"@shelf/tsconfig": "0.0.8",
63+
"@shelf/tsconfig": "0.0.9",
6464
"@types/aws-sdk": "2.7.0",
6565
"@types/cwd": "^0.10.0",
66-
"@types/jest": "28.1.8",
66+
"@types/jest": "29.4.0",
6767
"@types/node": "16",
6868
"eslint": "8.33.0",
69-
"husky": "8.0.2",
70-
"jest": "28.1.3",
69+
"husky": "8.0.3",
70+
"jest": "29.4.1",
7171
"lint-staged": "13.1.0",
7272
"prettier": "2.8.3",
73-
"typescript": "4.8.4"
73+
"typescript": "4.9.5"
7474
},
7575
"engines": {
7676
"node": ">=16"

‎src/environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable no-console */
2+
import {TestEnvironment} from 'jest-environment-node';
23
import type {EnvironmentContext} from '@jest/environment';
34
import type {JestEnvironmentConfig} from '@jest/environment';
4-
import {TestEnvironment} from 'jest-environment-node';
55

66
const debug = require('debug')('jest-dynamodb');
77

‎src/setup.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import type {ListTablesCommandOutput} from '@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand';
2-
import type {argValues} from 'dynamodb-local';
31
import DynamoDbLocal from 'dynamodb-local';
42
import {DynamoDB} from '@aws-sdk/client-dynamodb';
3+
import type {ListTablesCommandOutput} from '@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand';
4+
import type {argValues} from 'dynamodb-local';
55
import type {CreateTableCommandInput} from '@aws-sdk/client-dynamodb';
66
import getConfig from './utils/get-config';
77
import deleteTables from './utils/delete-tables';

0 commit comments

Comments
 (0)
Please sign in to comment.