-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "dynamodb-ts-model",
"version": "2.11.2",
"description": "A DynamoDB model/client with full TypeScript typings",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/henhal/dynamodb-model.git"
},
"author": "Henrik Hall <henrik.hall2@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.6"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.56.0",
"@aws-sdk/lib-dynamodb": "^3.56.0",
"dynamodb-expressions": "^3.2.3"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"lint": "eslint src --ext js,ts --max-warnings 0",
"prepack": "yarn clean && yarn build && yarn test",
"test": "NODE_PATH=src LOG_LEVEL=${LOG_LEVEL:=error} jest --config src/test/jest.config.js"
},
"keywords": [
"dynamodb",
"dynamo",
"ddb",
"db",
"database",
"aws",
"typescript",
"model",
"data-model",
"typed-model",
"typesafe"
]
}