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