mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Rename the marbles02 node directory as the sample code within is JavaScript, and we are planning to add a TypeScript version as well. Signed-off-by: Simon Stone <sstone1@uk.ibm.com> Change-Id: I423c8cf78fa16be057f762316e8b3d60b73df7ba
15 lines
318 B
JSON
15 lines
318 B
JSON
{
|
|
"name": "marbles",
|
|
"version": "1.0.0",
|
|
"description": "marbles chaincode implemented in node.js",
|
|
"engines": {
|
|
"node": ">=8.4.0",
|
|
"npm": ">=5.3.0"
|
|
},
|
|
"scripts": { "start" : "node marbles_chaincode.js" },
|
|
"engine-strict": true,
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-shim": "unstable"
|
|
}
|
|
}
|