mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 00:25:09 +00:00
Change-Id: Ia61aae9b83c3297dfe28fd475c585e021186a4aa Signed-off-by: Anthony O'Dowd <a_o-dowd@uk.ibm.com>
45 lines
1,015 B
JSON
45 lines
1,015 B
JSON
{
|
|
"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
|
|
}
|
|
}
|