bitcoinjs-lib/package.json

65 lines
1.5 KiB
JSON
Raw Normal View History

2011-09-26 18:35:29 +02:00
{
"name": "bitcoinjs-lib",
2018-07-17 08:42:35 +02:00
"version": "4.0.0",
2011-09-26 18:35:29 +02:00
"description": "Client-side Bitcoin JavaScript library",
"main": "./src/index.js",
"engines": {
2018-07-17 08:54:29 +02:00
"node": ">=8.0.0"
2016-10-06 12:22:24 +02:00
},
2011-09-26 18:35:29 +02:00
"keywords": [
"bitcoinjs",
2011-09-26 18:35:29 +02:00
"bitcoin",
"browserify",
"javascript",
"bitcoinjs"
2014-06-10 09:48:32 +02:00
],
"scripts": {
2016-09-14 14:25:12 +02:00
"coverage-report": "nyc report --reporter=lcov",
"coverage-html": "nyc report --reporter=html",
2016-09-14 14:25:12 +02:00
"coverage": "nyc --check-coverage --branches 90 --functions 90 mocha",
"integration": "mocha test/integration/",
2015-02-23 00:44:05 +01:00
"standard": "standard",
"test": "npm run standard && npm run coverage",
"unit": "mocha"
2014-03-08 06:02:40 +01:00
},
2014-11-29 02:39:12 +01:00
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
},
"files": [
"src"
],
2014-03-08 06:02:40 +01:00
"dependencies": {
2017-12-17 02:41:39 +01:00
"bech32": "^1.1.2",
2018-07-23 07:53:08 +02:00
"bip32": "^1.0.0",
"bip66": "^1.1.0",
2017-12-01 03:13:55 +01:00
"bitcoin-ops": "^1.4.0",
"bs58check": "^2.0.0",
2015-03-17 02:31:53 +01:00
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"merkle-lib": "^2.0.10",
"pushdata-bitcoin": "^1.0.1",
2015-03-17 02:31:53 +01:00
"randombytes": "^2.0.1",
2018-04-13 08:06:41 +02:00
"safe-buffer": "^5.1.1",
2018-07-23 07:53:08 +02:00
"tiny-secp256k1": "^1.0.0",
"typeforce": "^1.11.3",
2016-10-06 12:53:48 +02:00
"varuint-bitcoin": "^1.0.4",
2016-02-24 11:08:40 +01:00
"wif": "^2.0.1"
2014-11-29 02:39:12 +01:00
},
"devDependencies": {
"bip39": "^2.3.0",
2018-02-01 02:54:20 +01:00
"bip65": "^1.0.1",
2017-12-01 03:13:55 +01:00
"bip68": "^1.0.3",
2018-06-25 08:15:45 +02:00
"bn.js": "^4.11.8",
"bs58": "^4.0.0",
2018-05-29 03:08:38 +02:00
"dhttp": "^2.5.0",
2018-03-20 04:49:10 +01:00
"hoodwink": "^1.0.0",
"minimaldata": "^1.0.2",
2018-05-29 03:08:38 +02:00
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"proxyquire": "^2.0.1",
"standard": "^11.0.1"
2016-02-15 21:11:13 +01:00
},
"license": "MIT"
2011-09-26 18:35:29 +02:00
}