mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +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>
23 lines
464 B
JSON
23 lines
464 B
JSON
{
|
|
"name": "asset-transfer-ledger-queries",
|
|
"version": "1.0.0",
|
|
"description": "asset chaincode implemented in node.js",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"start": "fabric-chaincode-node start",
|
|
"lint": "eslint *.js */**.js",
|
|
"test": ""
|
|
},
|
|
"engine-strict": true,
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-contract-api": "~2.5",
|
|
"fabric-shim": "~2.5"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.57.0"
|
|
}
|
|
}
|