zcash-primitives-js/package.json

34 lines
865 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"
2017-05-31 06:13:38 -07:00
},
"dependencies": {
2017-05-31 06:16:33 -07:00
"bs58check": "2.0.2",
2017-06-01 19:35:08 -07:00
"create-hash": "1.1.3",
2017-05-31 06:16:33 -07:00
"libsodium-wrappers-sumo": "0.5.1",
2017-06-01 03:45:46 -07:00
"typeforce": "1.11.1",
"varuint-bitcoin": "1.0.4"
2017-05-30 14:36:30 -07:00
}
}