mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Fabric 1.1 supports javascript chaincode. This changeset addresses porting of the golang chaincode to node.js chiancode and the corresponding README files Change-Id: Iae24e713f16ab3508fe0cc18ee062ffa412b8ba6 Signed-off-by: ratnakar <asara.ratnakar@gmail.com>
33 lines
829 B
JSON
33 lines
829 B
JSON
{
|
|
"name": "balance-transfer",
|
|
"version": "1.0.0",
|
|
"description": "A balance-transfer example node program to demonstrate using node.js SDK APIs",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node app.js"
|
|
},
|
|
"keywords": [
|
|
"fabric-client sample app",
|
|
"balance-transfer node sample",
|
|
"v1.0 fabric nodesdk sample"
|
|
],
|
|
"engines": {
|
|
"node": ">=6.9.5 <7.0",
|
|
"npm": ">=3.10.10 <4.0"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"body-parser": "^1.17.1",
|
|
"cookie-parser": "^1.4.3",
|
|
"cors": "^2.8.3",
|
|
"express": "^4.15.2",
|
|
"express-bearer-token": "^2.1.0",
|
|
"express-jwt": "^5.1.0",
|
|
"express-session": "^1.15.2",
|
|
"fabric-ca-client": "unstable",
|
|
"fabric-client": "unstable",
|
|
"fs-extra": "^2.0.0",
|
|
"jsonwebtoken": "^7.3.0",
|
|
"log4js": "^0.6.38"
|
|
}
|
|
}
|