mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Node 20+ is now required. This is the oldest currently support LTS version of Node.js. Docker images are moved to Node 22, which is the current LTS release. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
25 lines
654 B
JSON
25 lines
654 B
JSON
{
|
|
"name": "asset-transfer-basic",
|
|
"version": "1.0.0",
|
|
"description": "Asset Transfer Basic Application implemented in JavaScript using fabric-gateway",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src",
|
|
"pretest": "npm run lint",
|
|
"start": "node src/app.js"
|
|
},
|
|
"engineStrict": true,
|
|
"author": "Hyperledger",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.12.2",
|
|
"@hyperledger/fabric-gateway": "^1.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.5.0",
|
|
"eslint": "^9.5.0",
|
|
"globals": "^15.6.0"
|
|
}
|
|
}
|