mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Avoid chaincode packages picking up dependencies on later v2.x releases, such as v2.5.x. Later releases may exploit features not compatible with the v2.2 chaincode container runtime. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
19 lines
389 B
JSON
19 lines
389 B
JSON
{
|
|
"name": "asset-transfer-ledger-queries",
|
|
"version": "1.0.0",
|
|
"description": "asset chaincode implemented in node.js",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=12",
|
|
"npm": ">=5.3.0"
|
|
},
|
|
"scripts": {
|
|
"start": "fabric-chaincode-node start"
|
|
},
|
|
"engine-strict": true,
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-contract-api": "~2.2",
|
|
"fabric-shim": "~2.2"
|
|
}
|
|
}
|