mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 23:45:10 +00:00
* Removed global install of lint modules * Fixed Lint Issues Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added lint script forapplication javascript Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> updated lint command for chaincode javascript Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> updated lint script Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> remove installing dependencies Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added lint script to js projects Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added more lint scripts Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added more lint scripts Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added missing npm lint command Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added missing eslint npm module Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Fix missing npm lint command Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added missing eslint npm module to auction-simple javascctipt app Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added eslint npm module Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added eslint dependency Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added eslint dependency Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> added eslint dependency Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Single command for ts js lint Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Fix or condition in lint.sh Signed-off-by: sapthasurendran <saptha.surendran@ibm.com>
23 lines
474 B
JSON
23 lines
474 B
JSON
{
|
|
"name": "asset-transfer-ledger-queries",
|
|
"version": "1.0.0",
|
|
"description": "asset chaincode implemented in node.js",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=12",
|
|
"npm": ">=5.3.0"
|
|
},
|
|
"scripts": {
|
|
"start": "fabric-chaincode-node start",
|
|
"lint": "eslint *.js */**.js"
|
|
},
|
|
"engine-strict": true,
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-contract-api": "^2.0.0",
|
|
"fabric-shim": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0"
|
|
}
|
|
}
|