-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1000 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
{
"name": "@kravc/table",
"version": "1.7.4",
"description": "Simple CRUD and query interface for DynamoDB table as a storage for @kravc/dos service.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "http://github.com/alexkravets/table.git"
},
"directories": {
"src": "src"
},
"scripts": {
"test": "eslint bin/ src/ test/ && NODE_APP_INSTANCE=test NODE_PATH=./ nyc --skip-full mocha"
},
"bin": {
"table": "bin/table.js"
},
"author": "Alexander Kravets <alex@slatestudio.com>",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.693.0",
"@aws-sdk/credential-providers": "^3.693.0",
"@aws-sdk/lib-dynamodb": "^3.693.0",
"hashids": "^2.3.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"chai": "^5.1.2",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"ulid": "^2.3.0"
}
}