mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
After creating release-1.1 branch, pin the fabric samples to use version "~1.1.0" of node sdk and node chaincode. This will forever align fabric samples in release-1.1 branch with the 1.1.x node.js releases. Change-Id: Ia8caebf8b7df4d33dd71dc6223a4cb386023bb05 Signed-off-by: David Enyeart <enyeart@us.ibm.com>
15 lines
342 B
JSON
15 lines
342 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": "~1.1.0"
|
|
}
|
|
}
|