zcash-primitives-js/package.json

27 lines
688 B
JSON
Raw Normal View History

2017-05-30 14:36:30 -07:00
{
"name": "zcashjs-primitives",
"version": "0.1.0",
"description": "Zcash primitives",
"author": "Jack Grigg <jack@z.cash>",
"license": "MIT",
"main": "src/index.js",
"keywords": [
"zcash"
],
"scripts": {
2017-05-30 18:34:40 -07:00
"coverage-report": "nyc report --reporter=lcov",
"coverage-html": "nyc report --reporter=html",
"coverage": "nyc --check-coverage --branches 90 --functions 90 mocha",
2017-05-30 14:36:30 -07:00
"integration": "mocha test/integration/",
"prepublish": "npm run test",
"standard": "standard",
2017-05-30 18:34:40 -07:00
"test": "npm run standard && npm run coverage",
2017-05-30 14:36:30 -07:00
"unit": "mocha"
},
"devDependencies": {
"mocha": "3.4.2",
2017-05-30 18:34:40 -07:00
"nyc": "10.3.2",
2017-05-30 14:36:30 -07:00
"standard": "10.0.2"
}
}