mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 10:05:10 +00:00
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>
17 lines
329 B
JSON
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"
|
|
}
|
|
}
|