fabric-samples/asset-transfer-ledger-queries/chaincode-javascript/package.json
r2roC 4b886cf289 Added js asset-transfer-ledger query sample
Based off of marbles02.js, variable and function names were renamed, but the logic of the code is the same.
Added AssetExists()

Signed-off-by: r2roC <arturo@IBM.com>
2020-06-26 14:17:07 -04:00

17 lines
329 B
JSON

{
"name": "assets",
"version": "1.0.0",
"description": "asset chaincode implemented in node.js",
"engines": {
"node": ">=8.4.0",
"npm": ">=5.3.0"
},
"scripts": {
"start": "node asset_transfer_ledger_chaincode.js"
},
"engine-strict": true,
"license": "Apache-2.0",
"dependencies": {
"fabric-shim": "^2.0.0"
}
}