forked from hyperledger/fabric-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.22 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
{
"name": "@hyperledger/fabric-gateway",
"version": "1.5.2",
"description": "Hyperledger Fabric Gateway client API for Node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/fabric-gateway"
},
"bugs": "https://github.com/hyperledger/fabric-gateway/issues",
"homepage": "https://hyperledger.github.io/fabric-gateway/",
"author": {
"name": "hyperledger/fabric",
"email": "[email protected]",
"url": "https://www.hyperledger.org/use/fabric"
},
"scripts": {
"build": "npm-run-all clean compile copy-non-ts-source",
"clean": "rm -rf apidocs dist src/protos",
"compile": "tsc --project tsconfig.build.json",
"copy-non-ts-source": "rsync -rv --prune-empty-dirs --include='*.d.ts' --exclude='*.ts' src/ dist",
"format": "prettier '**/*.{ts,js}' --check",
"format:fix": "prettier '**/*.{ts,js}' --write",
"generate-apidoc": "typedoc",
"lint": "eslint src",
"sbom": "cyclonedx-npm --omit dev --output-format JSON --output-file sbom.json",
"test": "npm-run-all lint format unit-test",
"unit-test": "jest"
},
"license": "Apache-2.0",
"dependencies": {
"@grpc/grpc-js": "^1.10.0",
"@hyperledger/fabric-protos": "^0.3.0",
"@noble/curves": "^1.4.0",
"google-protobuf": "^3.21.0"
},
"optionalDependencies": {
"pkcs11js": "^2.1.0"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^1.18.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.3.0",
"@tsconfig/node18": "^18.2.4",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.31",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "~5.4.5",
"typescript-eslint": "^7.9.0"
}
}