-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 KB
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
54
55
56
57
58
59
60
61
62
63
{
"name": "typeorm-dynamodb",
"version": "3.1.0",
"description": "Query a DynamoDB database with NodeJS",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm-run-all clean lint test tsc",
"clean": "rm -rf dist",
"convert": "npx ts-node src/convert/hibernate-entity-converter.ts",
"lint": "eslint src/**/*.ts --fix",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"tsc": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/blueleader07/typeorm-dynamodb.git"
},
"bugs": {
"url": "https://github.com/blueleader07/typeorm-dynamodb/issues"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/sinon": "^9.0.7",
"@types/tiny-async-pool": "^2.0.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"sinon": "^9.0.3",
"ts-jest": "29.4.9",
"ts-node": "^10.9.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.50.1"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"tiny-async-pool": "^2.1.0",
"typeorm": "^0.3.15",
"typeorm-transactional": "^0.5.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.540",
"@aws-sdk/lib-dynamodb": "^3.540",
"@aws-sdk/util-dynamodb": "^3.540",
"@smithy/node-http-handler": "^3"
},
"engines": {
"node": ">=18"
}
}