-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.43 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
{
"dependencies": {
"@aws-sdk/client-qldb": "^3.431.0",
"@aws-sdk/node-http-handler": "^3.374.0",
"@aws-sdk/smithy-client": "^3.374.0",
"@types/node": "^20.8.7",
"amazon-qldb-driver-nodejs": "3.0.1",
"ion-hash-js": "^2.0.0",
"ion-js": "^4.3.0",
"jsbi": "^3.1.1",
"log4js": "^6.9.1"
},
"name": "amazon-qldb-kvs-nodejs",
"description": "A helper module, simplifying basic interactions with Amazon Quantum Ledger Database for Node.js through a simple key-value store interface.",
"version": "0.9.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-sonarjs": "^0.21.0",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"scripts": {
"build": "npm run lint && tsc",
"doc": "typedoc --out docs ./src",
"lint": "./node_modules/.bin/eslint ./src/**/*.ts",
"test": "npm run build && jest --runInBand"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aws-samples/amazon-qldb-kvs-nodejs"
},
"keywords": [
"amazon",
"aws",
"qldb",
"ledger"
]
}