forked from aws-samples/amazon-qldb-kvs-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"dependencies": {
"@types/node": "^17.0.19",
"amazon-qldb-driver-nodejs": "2.2.0",
"aws-sdk": "^2.1079.0",
"ion-js": "^4.2.1",
"ion-hash-js": "^2.0.0",
"jsbi": "^3.1.1",
"log4js": "^6.4.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.8.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-sonarjs": "^0.12.0",
"jest": "^27.5.1",
"ts-node": "^10.5.0",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
},
"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"
]
}