mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
Initial impl JS App workflow, Added 2 asset sample, with transfer & delete Bugfixes: Bug fix in ReadTransferAgreement Improved logging in Go Chaincode, Improved Chaincode error handling, checks for execution on orgs peer, bug fix, lint issues use addDiscoveryInterest to scope policy, instead of setEndorsingOrganizations Signed-off-by: Sijo Cherian <sijo@ibm.com>
45 lines
1 KiB
JSON
45 lines
1 KiB
JSON
{
|
|
"name": "asset-transfer-private-data",
|
|
"version": "1.0.0",
|
|
"description": "asset-transfer-private-data application implemented in JavaScript",
|
|
"engines": {
|
|
"node": ">=12",
|
|
"npm": ">=5"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"pretest": "npm run lint",
|
|
"test": "nyc mocha --recursive"
|
|
},
|
|
"engineStrict": true,
|
|
"author": "Hyperledger",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-ca-client": "^2.2.0",
|
|
"fabric-network": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"eslint": "^5.9.0",
|
|
"mocha": "^5.2.0",
|
|
"nyc": "^14.1.1",
|
|
"sinon": "^7.1.1",
|
|
"sinon-chai": "^3.3.0"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"coverage/**",
|
|
"test/**"
|
|
],
|
|
"reporter": [
|
|
"text-summary",
|
|
"html"
|
|
],
|
|
"all": true,
|
|
"check-coverage": true,
|
|
"statements": 100,
|
|
"branches": 100,
|
|
"functions": 100,
|
|
"lines": 100
|
|
}
|
|
}
|