{ "name": "asset-transfer-basic", "version": "1.0.0", "description": "Asset Transfer Basic Application implemented in typeScript using fabric-gateway", "main": "dist/index.js", "typings": "dist/index.d.ts", "engines": { "node": ">=12", "npm": ">=5" }, "scripts": { "lint": "eslint . --ext .ts", "pretest": "npm run lint", "start": "npm run build && node dist/app.js", "build": "tsc", "build:watch": "tsc -w", "prepublishOnly": "npm run build" }, "engineStrict": true, "author": "Hyperledger", "license": "Apache-2.0", "dependencies": { "@hyperledger/fabric-gateway": "^0.1.0" }, "devDependencies": { "@tsconfig/node12": "^1.0.9", "@typescript-eslint/eslint-plugin": "^4.31.2", "@typescript-eslint/parser": "^4.31.2", "eslint": "^7.32.0", "typescript": "^3.1.6" }, "nyc": { "extension": [ ".ts", ".tsx" ], "exclude": [ "coverage/**", "dist/**" ], "reporter": [ "text-summary", "html" ], "all": true, "check-coverage": true, "statements": 100, "branches": 100, "functions": 100, "lines": 100 } }