-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
73 lines (73 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "dynamodb-onetable",
"version": "2.7.6",
"description": "DynamoDB access library for single-table designs",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts"
},
"./Dynamo": {
"import": "./dist/mjs/Dynamo.js",
"require": "./dist/cjs/Dynamo.js",
"types": "./dist/mjs/Dynamo.d.ts"
}
},
"keywords": [
"dynamodb"
],
"author": "Michael O'Brien <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && bash ./fixup",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"prepare": "npm run build",
"_prepublishOnly": "npm test && npm run lint",
"test": "jest",
"test:v2": "DDB_CLIENT_VERSION=v2 jest",
"test:v3": "DDB_CLIENT_VERSION=v3 jest",
"test-cov": "jest --coverage",
"test-cov:v2": "npm run test:v2 -- --coverage",
"test-cov:v3": "npm run test:v3 -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sensedeep/dynamodb-onetable.git"
},
"bugs": {
"url": "httckaps://github.com/sensedeep/dynamodb-onetable/issues"
},
"homepage": "https://github.com/sensedeep/dynamodb-onetable",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.609.0",
"@aws-sdk/util-dynamodb": "^3.609.0",
"custom-metrics": "^1.0.4"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.140",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"aws-sdk": "^2.1653.0",
"dataloader": "^2.2.2",
"dynamo-db-local": "^7.0.0",
"eslint": "^9.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"utility-types": "^3.11.0",
"wait-port": "^1.1.0"
},
"files": [
"dist/",
"Dynamo"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}