mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +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
548 B
JSON
23 lines
548 B
JSON
{
|
|
"name": "asset-transfer-basic",
|
|
"version": "1.0.0",
|
|
"description": "Asset-transfer-basic application implemented in JavaScript",
|
|
"engines": {
|
|
"node": ">=12",
|
|
"npm": ">=5"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint *.js",
|
|
"pretest": "npm run lint"
|
|
},
|
|
"engineStrict": true,
|
|
"author": "Hyperledger",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"fabric-ca-client": "^2.2.4",
|
|
"fabric-network": "^2.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0"
|
|
}
|
|
}
|