forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@hyperledger/cacti-weaver-sdk-fabric",
"version": "2.0.0",
"description": "Supplemental library to 'fabric-client' with functions for relay-based cross-network interactions",
"keywords": [
"hyperledger",
"blockchain",
"interoperability"
],
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/cacti.git"
},
"license": "Apache-2.0",
"author": "V. Ramakrishna",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "tsc",
"docs": "typedoc --out docs/ src/",
"prepublishOnly": "npm test",
"test": "nyc mocha -r ts-node/register --exclude 'test/data/**/*.js' --recursive -t 10000"
},
"nyc": {
"all": true,
"exclude": [
"index.js",
"coverage/**",
"lib/impl",
"lib/msp",
"lib/protos",
"test/**"
],
"reporter": [
"text-summary",
"html"
]
},
"dependencies": {
"@grpc/grpc-js": "1.11.3",
"@grpc/proto-loader": "0.7.13",
"@hyperledger/cacti-weaver-protos-js": "2.0.0",
"elliptic": "6.5.7",
"fabric-common": "2.2.20",
"fabric-network": "2.2.20",
"fabric-protos": "2.2.20",
"js-sha3": "0.8.0",
"jsrsasign": "11.0.0",
"log4js": "6.9.1",
"pkcs11js": "1.3.1",
"sjcl": "1.0.8",
"sshpk": "1.17.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@types/node": "18.11.9",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"mocha": "10.7.3",
"nyc": "12.0.2",
"rewire": "4.0.1",
"sinon": "6.3.5",
"sinon-chai": "3.7.0",
"ts-node": "10.9.1",
"typedoc": "0.26.2",
"typescript": "5.5.2"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/hyperledger"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/hyperledger-cacti/cacti/blob/main/weaver/LICENSE"
}
],
"tag": "latest"
}