mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Move the old programming model samples for FabCar, including the "node" (JavaScript!) chaincode sample and the JavaScript application in the top level into new subdirectories called "javascript-low-level". We still want to keep these samples around for comparision purposes, but most new developers should be using the new samples built using the new programming model. At the same time, update the startFabric.sh script to output correct help information on how to run the applications built using the new programming model after starting the Fabric network and deploying the chaincode. Change-Id: I1e3701737f105cba67f661bf893771ac8a3a0373 Signed-off-by: Simon Stone <sstone1@uk.ibm.com>
17 lines
307 B
JSON
17 lines
307 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": "unstable"
|
|
}
|
|
}
|