{
"name": "wif",
"version": "1.2.1",
"description": "Bitcoin Wallet Import Format (WIF) encoding module",
"author": "Daniel Cousens",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/wif.git"
},
"bugs": {
"url": "https://github.com/bitcoinjs/wif/issues"
},
"homepage": "https://github.com/bitcoinjs/wif",
"keywords": [
"bitcoin",
"base58",
"base58check",
"encoding",
"wif"
],
"main": "index.js",
"scripts": {
"coverage": "mocha --require blanket -R travis-cov",
"coverage-local": "mocha --require blanket -R html-cov",
"standard": "standard",
"test": "npm run standard && npm run unit",
"unit": "mocha"
},
"config": {
"blanket": {
"pattern": [
""
],
"data-cover-never": [
"node_modules",
"test"
]
},
"travis-cov": {
"threshold": 100
}
},
"dependencies": {
"bs58check": "^1.0.6"
},
"devDependencies": {
"blanket": "*",
"mocha": "*",
"standard": "*",
"travis-cov": "*"
}
}