zcash-primitives-js/package.json

53 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2017-05-30 14:36:30 -07:00
{
2017-06-01 21:02:25 -07:00
"name": "zcash-primitives",
2017-05-30 14:36:30 -07:00
"version": "0.1.0",
"description": "Zcash primitives",
"author": "Jack Grigg <jack@z.cash>",
"license": "MIT",
"main": "src/index.js",
"keywords": [
"zcash"
],
2017-06-01 21:46:07 -07:00
"repository": {
"type": "git",
"url": "https://github.com/zcash/zcash-primitives-js.git"
},
2017-05-30 14:36:30 -07:00
"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"
},
"standard": {
"ignore": [
"src/blake2b.js"
]
},
"nyc": {
"exclude": [
"src/blake2b.js",
"test",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**",
"**/node_modules/**"
]
},
2017-05-30 14:36:30 -07:00
"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
}
}