mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Fabric 1.1 supports javascript chaincode. This changeset addresses porting of the golang chaincode to node.js chiancode and the corresponding README files Change-Id: Iae24e713f16ab3508fe0cc18ee062ffa412b8ba6 Signed-off-by: ratnakar <asara.ratnakar@gmail.com>
15 lines
344 B
JSON
15 lines
344 B
JSON
{
|
|
"name": "chaincode_example02",
|
|
"version": "1.0.0",
|
|
"description": "chaincode_example02 chaincode implemented in node.js",
|
|
"engines": {
|
|
"node": ">=8.4.0",
|
|
"npm": ">=5.3.0"
|
|
},
|
|
"scripts": { "start" : "node chaincode_example02.js" },
|
|
"engine-strict": true,
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-shim": "unstable"
|
|
}
|
|
}
|