forked from awslabs/dynamodb-data-mapper-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "dynamodb-batch-iterator",
"version": "0.8.0",
"description": "Abstraction for DynamoDB batch reads and writes for that handles batch splitting and partial retries with exponential backoff",
"keywords": [
"aws",
"dynamodb"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bas-d/dynamodb-batch-iterator.git"
},
"bugs": {
"url": "https://github.com/bas-d/dynamodb-batch-iterator/issues"
},
"homepage": "https://bas-d.github.io/dynamodb-batch-iterator/",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"docs": "typedoc src",
"prepublishOnly": "tsc",
"pretest": "tsc -p tsconfig.test.json",
"test": "jest \"build/(.+).spec.js\""
},
"author": {
"name": "AWS SDK for JavaScript Team & Bas Doorn",
"email": "7903735+bas-d@users.noreply.github.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.44.0",
"@types/jest": "^29.5.5",
"@types/node": "^18.18.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.44.0"
},
"dependencies": {
"tslib": "^2.3.1",
"utf8-bytes": "^0.0.1"
}
}