mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Pin fabric samples to node.js ~1.2.0 sdk and chaincode shim, so that the v1.2 samples always use v1.2.x sdk and shim. Change-Id: I5e2d4a37dc84f7f0f99bf82744843ee719b83fce Signed-off-by: David Enyeart <enyeart@us.ibm.com>
17 lines
305 B
JSON
17 lines
305 B
JSON
{
|
|
"name": "fabcar",
|
|
"version": "1.0.0",
|
|
"description": "fabcar chaincode implemented in node.js",
|
|
"engines": {
|
|
"node": ">=8.4.0",
|
|
"npm": ">=5.3.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node fabcar.js"
|
|
},
|
|
"engine-strict": true,
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-shim": "~1.2.0"
|
|
}
|
|
}
|