-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 898 Bytes
/
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
{
"name": "duenamodb",
"version": "1.4.0",
"keywords": [
"DynamoDB",
"DDB",
"AWS DynamoDB",
"DynamoDB Client",
"Amazon DynamoDB"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"bump": "ts-node scripts/update-version",
"prettier": "prettier --check .",
"prettier:write": "prettier --write .",
"test": "ts-node scripts/tests",
"posttest": "ts-node scripts/stop-db",
"watch": "tsc -w"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.306.0",
"@aws-sdk/util-dynamodb": "^3.306.0"
},
"devDependencies": {
"@types/node": "^17.0.16",
"@types/prettier": "^2.4.4",
"ava": "^6.1.0",
"dynamodb-local": "^0.0.31",
"find-process": "^1.4.7",
"prettier": "2.6.1",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
}
}