-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
48
49
50
51
52
53
{
"name": "dynadash",
"version": "1.9.22",
"description": "DynamoDb helpers",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest --coverage",
"prepare": "npm run build",
"build": "tsc"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/frankleng/dynadash.git"
},
"keywords": [
"dynamodb",
"query"
],
"author": "Frank Leng",
"license": "MIT",
"bugs": {
"url": "https://github.com/frankleng/dynadash/issues"
},
"homepage": "https://github.com/frankleng/dynadash#readme",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^20.x",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"aws-sdk-client-mock": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^29.5.0",
"prettier": "^2.8.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.535.0",
"@aws-sdk/types": "^3.535.0",
"@aws-sdk/util-dynamodb": "^3.535.0"
}
}