2011-09-26 18:35:29 +02:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2017-12-23 12:56:53 +01:00
|
|
|
"version": "3.3.2",
|
2011-09-26 18:35:29 +02:00
|
|
|
"description": "Client-side Bitcoin JavaScript library",
|
2013-02-17 06:39:15 +01:00
|
|
|
"main": "./src/index.js",
|
2016-10-07 02:34:33 +02:00
|
|
|
"engines": {
|
2017-01-04 01:23:04 +01:00
|
|
|
"node": ">=4.0.0"
|
2016-10-06 12:22:24 +02:00
|
|
|
},
|
2011-09-26 18:35:29 +02:00
|
|
|
"keywords": [
|
2017-09-25 02:01:16 +02:00
|
|
|
"bitcoinjs",
|
2011-09-26 18:35:29 +02:00
|
|
|
"bitcoin",
|
2017-09-25 02:01:16 +02:00
|
|
|
"browserify",
|
|
|
|
"javascript",
|
|
|
|
"bitcoinjs"
|
2014-06-10 09:48:32 +02:00
|
|
|
],
|
2013-02-17 06:39:15 +01:00
|
|
|
"scripts": {
|
2016-09-14 14:25:12 +02:00
|
|
|
"coverage-report": "nyc report --reporter=lcov",
|
2016-10-14 20:03:54 +02:00
|
|
|
"coverage-html": "nyc report --reporter=html",
|
2016-09-14 14:25:12 +02:00
|
|
|
"coverage": "nyc --check-coverage --branches 90 --functions 90 mocha",
|
2015-07-07 07:01:13 +02:00
|
|
|
"integration": "mocha test/integration/",
|
2015-02-23 00:44:05 +01:00
|
|
|
"standard": "standard",
|
2016-10-10 03:20:48 +02:00
|
|
|
"test": "npm run standard && npm run coverage",
|
2015-07-07 07:01:13 +02:00
|
|
|
"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"
|
|
|
|
},
|
2016-02-15 07:12:11 +01:00
|
|
|
"files": [
|
|
|
|
"src"
|
|
|
|
],
|
2014-03-08 06:02:40 +01:00
|
|
|
"dependencies": {
|
2017-12-17 02:41:39 +01:00
|
|
|
"bech32": "^1.1.2",
|
2015-01-09 04:19:32 +01:00
|
|
|
"bigi": "^1.4.0",
|
2018-05-15 14:17:46 +02:00
|
|
|
"bip32": "0.0.3",
|
2015-08-22 03:54:00 +02:00
|
|
|
"bip66": "^1.1.0",
|
2017-12-01 03:13:55 +01:00
|
|
|
"bitcoin-ops": "^1.4.0",
|
2016-12-21 02:52:09 +01:00
|
|
|
"bs58check": "^2.0.0",
|
2015-03-17 02:31:53 +01:00
|
|
|
"create-hash": "^1.1.0",
|
|
|
|
"create-hmac": "^1.1.3",
|
2015-02-02 09:04:16 +01:00
|
|
|
"ecurve": "^1.0.0",
|
2017-04-18 04:32:17 +02:00
|
|
|
"merkle-lib": "^2.0.10",
|
2016-12-17 15:24:00 +01:00
|
|
|
"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-05-15 14:17:46 +02:00
|
|
|
"tiny-secp256k1": "0.0.5",
|
2017-08-09 08:03:12 +02:00
|
|
|
"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": {
|
2018-05-15 14:17:46 +02:00
|
|
|
"bigi": "^1.4.2",
|
2017-04-19 15:10:30 +02:00
|
|
|
"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",
|
2016-12-21 02:52:09 +01:00
|
|
|
"bs58": "^4.0.0",
|
2018-01-31 02:46:35 +01:00
|
|
|
"dhttp": "^2.4.2",
|
2018-03-20 04:49:10 +01:00
|
|
|
"hoodwink": "^1.0.0",
|
2016-12-17 15:24:49 +01:00
|
|
|
"minimaldata": "^1.0.2",
|
2018-02-19 22:25:56 +01:00
|
|
|
"mocha": "^5.0.1",
|
|
|
|
"nyc": "^11.4.1",
|
2015-03-18 16:30:04 +01:00
|
|
|
"proxyquire": "^1.4.0",
|
2017-03-29 08:05:31 +02:00
|
|
|
"standard": "^9.0.2"
|
2016-02-15 21:11:13 +01:00
|
|
|
},
|
|
|
|
"license": "MIT"
|
2011-09-26 18:35:29 +02:00
|
|
|
}
|