bitcoinjs-lib/package.json
2018-12-29 15:25:54 +09:00

68 lines
1.7 KiB
JSON

{
"name": "bitcoinjs-lib",
"version": "4.0.2",
"description": "Client-side Bitcoin JavaScript library",
"main": "./dist/src/index.js",
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"bitcoinjs",
"bitcoin",
"browserify",
"javascript",
"bitcoinjs"
],
"scripts": {
"coverage-report": "nyc report --reporter=lcov",
"coverage-html": "nyc report --reporter=html",
"coverage": "nyc --check-coverage --branches 83 --functions 90 --lines 89 mocha",
"integration": "npm run build && mocha --timeout 50000 test/integration/",
"standard": "standard",
"test": "npm run build && npm run standard && npm run coverage",
"unit": "npm run build && mocha",
"build": "tsc -d -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
},
"files": [
"dist/src"
],
"dependencies": {
"bech32": "^1.1.2",
"bip32": "^1.0.0",
"bip66": "^1.1.0",
"bitcoin-ops": "^1.4.0",
"bs58check": "^2.0.0",
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"merkle-lib": "^2.0.10",
"pushdata-bitcoin": "^1.0.1",
"randombytes": "^2.0.1",
"safe-buffer": "^5.1.1",
"tiny-secp256k1": "^1.0.0",
"typeforce": "^1.11.3",
"varuint-bitcoin": "^1.0.4",
"wif": "^2.0.1"
},
"devDependencies": {
"@types/node": "^10.12.18",
"bip39": "^2.3.0",
"bip65": "^1.0.1",
"bip68": "^1.0.3",
"bn.js": "^4.11.8",
"bs58": "^4.0.0",
"dhttp": "^3.0.0",
"hoodwink": "^2.0.0",
"minimaldata": "^1.0.2",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"proxyquire": "^2.0.1",
"standard": "^11.0.1",
"typescript": "^3.2.2"
},
"license": "MIT"
}