forked from sensedeep/dynamodb-onetable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "dynamodb-onetable",
"version": "2.6.3",
"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"
},
"./Dynamo": {
"import": "./dist/mjs/Dynamo.js",
"require": "./dist/cjs/Dynamo.js"
}
},
"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": "https://github.com/sensedeep/dynamodb-onetable/issues"
},
"homepage": "https://github.com/sensedeep/dynamodb-onetable",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.338.0",
"@aws-sdk/util-dynamodb": "^3.338.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.115",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"aws-sdk": "^2.1383.0",
"dataloader": "^2.2.2",
"dynamo-db-local": "^6.0.0",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"utility-types": "^3.10.0",
"wait-port": "^1.0.4"
},
"files": [
"dist/",
"Dynamo"
],
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
}
}