-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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-paginator",
"version": "3.1.0",
"description": "A library to help paginate dynamodb results into pages",
"main": ".dist/index.js",
"type": "module",
"module": ".dist/index.js",
"types": ".dist/index.d.ts",
"scripts": {
"test": "jest --config jest.json",
"build": "rimraf .dist && tsc --emitDeclarationOnly --declaration && tsx build.ts",
"lint": "eslint . --fix"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supersoniko/dynamodb-paginator.git"
},
"author": "Sacha Reinert",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"codecov": "^3.8.2",
"esbuild": "^0.19.9",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"glob": "^10.3.10",
"husky": "^8.0.3",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"ts-jest": "^29.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.0.0",
"@aws-sdk/lib-dynamodb": "^3.0.0"
}
}