-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "dynamorm",
"author": "asnaeb",
"description": "Full-featured DynamoDB ORM client",
"keywords": [
"dynamodb",
"orm",
"aws",
"typescript",
"decorators",
"database"
],
"license": "GPL-v3.0-or-later",
"version": "1.0.0",
"repository": "https://github.com/asnaeb/DynamORM.git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./legacy": "./lib/legacy.js",
"./operators": "./lib/operators.js"
},
"files": ["lib"],
"scripts": {
"prebuild": "rm -r lib || true",
"build": "tsc",
"test": "ts-node -T --",
"build:babel-tests": "babel ./test/babel --out-dir ./test/babel --out-file-extension .min.js"
},
"dependencies": {
"@asn.aeb/async-array": "^1.5.9",
"@aws-sdk/client-dynamodb": "^3.297.0",
"@aws-sdk/lib-dynamodb": "^3.297.0",
"amazon-dax-client": "^1.2.9",
"aws-cdk-lib": "^2.70.0",
"aws-sdk": "^2.1341.0",
"constructs": "^10.1.288"
},
"devDependencies": {
"@asn.aeb/dynamodb-local": "^0.0.3",
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@types/amazon-dax-client": "^1.2.5",
"@types/node": "^18.15.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}