@awsless/dynamodb-server 0.0.3 → 0.0.5

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/dist/index.js CHANGED
@@ -89,7 +89,7 @@ var DynamoDBServer = class {
89
89
  getClient() {
90
90
  if (!this.client) {
91
91
  this.client = new import_client_dynamodb.DynamoDBClient({
92
- maxAttempts: 10,
92
+ maxAttempts: 3,
93
93
  endpoint: this.endpoint,
94
94
  region: this.region,
95
95
  tls: false,
package/dist/index.mjs CHANGED
@@ -55,7 +55,7 @@ var DynamoDBServer = class {
55
55
  getClient() {
56
56
  if (!this.client) {
57
57
  this.client = new DynamoDBClient({
58
- maxAttempts: 10,
58
+ maxAttempts: 3,
59
59
  endpoint: this.endpoint,
60
60
  region: this.region,
61
61
  tls: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/dynamodb-server",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -15,17 +15,10 @@
15
15
  "bugs": {
16
16
  "url": "https://github.com/awsless/awsless/issues"
17
17
  },
18
- "devDependencies": {
19
- "@aws-sdk/client-dynamodb": "3.272.0",
20
- "@aws-sdk/lib-dynamodb": "3.258.0",
21
- "@aws-sdk/smithy-client": "3.272.0"
22
- },
23
- "peerDependencies": {
24
- "@aws-sdk/client-dynamodb": "3.272.0",
25
- "@aws-sdk/lib-dynamodb": "3.258.0",
26
- "@aws-sdk/smithy-client": "3.272.0"
27
- },
28
18
  "dependencies": {
19
+ "@aws-sdk/client-dynamodb": "3.329.0",
20
+ "@aws-sdk/lib-dynamodb": "3.329.0",
21
+ "@aws-sdk/smithy-client": "3.329.0",
29
22
  "@aws-sdk/url-parser": "^3.272.0",
30
23
  "dynamo-db-local": "^6.0.0",
31
24
  "sleep-await": "^1.0.2"