{ "name": "smart-contract", "version": "0.0.1", "description": "Smart Contract", "engines": { "node": ">=8", "npm": ">=5" }, "scripts": { "lint": "eslint .", "pretest": "npm run lint", "test": "nyc mocha --recursive", "start": "startChaincode" }, "engineStrict": true, "author": "Anthony ODowd", "license": "Apache-2.0", "dependencies": { "fabric-shim": "unstable", "fabric-contract-api": "unstable" }, "devDependencies": { "chai": "^4.1.2", "eslint": "^4.19.1", "mocha": "^5.2.0", "nyc": "^12.0.2", "sinon": "^6.0.0" }, "nyc": { "exclude": [ "coverage/**", "test/**" ], "reporter": [ "text-summary", "html" ], "all": true, "check-coverage": true, "statements": 100, "branches": 100, "functions": 100, "lines": 100 } }