This repository was archived by the owner on Dec 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 KB
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
53
54
{
"dependencies": {
"@aws-sdk/client-config-service": "^3.451.0",
"@aws-sdk/client-iam": "^3.451.0",
"@aws-sdk/client-qldb": "^3.451.0",
"@aws-sdk/client-qldb-session": "^3.451.0",
"@aws-sdk/client-resource-groups-tagging-api": "^3.451.0",
"@aws-sdk/client-s3": "^3.451.0",
"@types/node": "^18.18.9",
"amazon-qldb-driver-nodejs": "^3.0.1",
"aws-sdk": "^2.1499.0",
"ion-js": "^5.2.0",
"jsbi": "^3.2.5"
},
"name": "amazon-qldb-dmv-sample-nodejs",
"description": "Amazon Quantum Ledger Database Node.js sample application",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"scripts": {
"build": "npm run lint && tsc",
"doc": "typedoc --out docs ./src",
"lint": "eslint src",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"strict\\\":false} mocha -r ts-node/register src/test/*.test.ts"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/"
},
"license": "Apache-2.0",
"keywords": [
"amazon",
"aws",
"qldb",
"ledger"
],
"repository": {
"type": "git",
"url": "https://github.com/awslabs/amazon-qldb-dmv-sample-nodejs"
}
}