2011-09-26 17:35:29 +01:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2019-05-23 07:23:16 +09:00
|
|
|
"version": "5.0.5",
|
2011-09-26 17:35:29 +01:00
|
|
|
"description": "Client-side Bitcoin JavaScript library",
|
2019-01-04 18:33:02 +09:00
|
|
|
"main": "./src/index.js",
|
|
|
|
"types": "./types/index.d.ts",
|
2016-10-07 11:34:33 +11:00
|
|
|
"engines": {
|
2018-07-17 16:54:29 +10:00
|
|
|
"node": ">=8.0.0"
|
2016-10-06 21:22:24 +11:00
|
|
|
},
|
2011-09-26 17:35:29 +01:00
|
|
|
"keywords": [
|
2017-09-25 10:01:16 +10:00
|
|
|
"bitcoinjs",
|
2011-09-26 17:35:29 +01:00
|
|
|
"bitcoin",
|
2017-09-25 10:01:16 +10:00
|
|
|
"browserify",
|
|
|
|
"javascript",
|
|
|
|
"bitcoinjs"
|
2014-06-10 17:48:32 +10:00
|
|
|
],
|
2013-02-17 00:39:15 -05:00
|
|
|
"scripts": {
|
2019-04-21 21:30:21 +09:00
|
|
|
"build": "npm run clean && tsc -p ./tsconfig.json && npm run formatjs",
|
2019-05-21 16:41:47 +09:00
|
|
|
"clean": "rimraf src types",
|
2018-12-29 11:10:25 +09:00
|
|
|
"coverage-report": "npm run build && npm run nobuild:coverage-report",
|
|
|
|
"coverage-html": "npm run build && npm run nobuild:coverage-html",
|
|
|
|
"coverage": "npm run build && npm run nobuild:coverage",
|
2019-03-04 00:27:08 +09:00
|
|
|
"format": "npm run prettier -- --write",
|
2019-04-21 21:30:21 +09:00
|
|
|
"formatjs": "npm run prettierjs -- --write > /dev/null 2>&1",
|
2019-05-21 15:23:18 +09:00
|
|
|
"format:ci": "npm run prettier -- --check && npm run prettierjs -- --check",
|
2019-04-01 16:22:47 +09:00
|
|
|
"gitdiff:ci": "npm run build && git diff --exit-code",
|
2018-12-29 11:10:25 +09:00
|
|
|
"integration": "npm run build && npm run nobuild:integration",
|
2019-03-05 23:51:45 +09:00
|
|
|
"lint": "tslint -p tsconfig.json -c tslint.json",
|
2018-12-29 11:10:25 +09:00
|
|
|
"nobuild:coverage-report": "nyc report --reporter=lcov",
|
|
|
|
"nobuild:coverage-html": "nyc report --reporter=html",
|
|
|
|
"nobuild:coverage": "nyc --check-coverage --branches 90 --functions 90 --lines 90 mocha",
|
|
|
|
"nobuild:integration": "mocha --timeout 50000 test/integration/",
|
|
|
|
"nobuild:unit": "mocha",
|
2019-03-06 21:38:36 +09:00
|
|
|
"prettier": "prettier 'ts_src/**/*.ts' --ignore-path ./.prettierignore",
|
2019-04-21 21:30:21 +09:00
|
|
|
"prettierjs": "prettier 'src/**/*.js' --ignore-path ./.prettierignore",
|
2019-03-05 23:51:45 +09:00
|
|
|
"test": "npm run build && npm run format:ci && npm run lint && npm run nobuild:coverage",
|
2018-12-29 11:10:25 +09:00
|
|
|
"unit": "npm run build && npm run nobuild:unit"
|
2014-03-08 13:02:40 +08:00
|
|
|
},
|
2014-11-29 12:39:12 +11:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
|
|
|
|
},
|
2016-02-15 09:12:11 +03:00
|
|
|
"files": [
|
2019-01-17 16:52:58 +09:00
|
|
|
"src",
|
|
|
|
"types"
|
2016-02-15 09:12:11 +03:00
|
|
|
],
|
2014-03-08 13:02:40 +08:00
|
|
|
"dependencies": {
|
2019-01-15 17:48:10 +09:00
|
|
|
"@types/node": "10.12.18",
|
2017-12-17 10:41:39 +09:00
|
|
|
"bech32": "^1.1.2",
|
2019-07-01 19:57:35 +09:00
|
|
|
"bip174": "0.0.10",
|
2019-05-21 15:13:38 +09:00
|
|
|
"bip32": "^2.0.3",
|
2015-08-22 11:54:00 +10:00
|
|
|
"bip66": "^1.1.0",
|
2017-12-01 13:13:55 +11:00
|
|
|
"bitcoin-ops": "^1.4.0",
|
2016-12-21 12:52:09 +11:00
|
|
|
"bs58check": "^2.0.0",
|
2015-03-17 12:31:53 +11:00
|
|
|
"create-hash": "^1.1.0",
|
|
|
|
"create-hmac": "^1.1.3",
|
2017-04-18 12:32:17 +10:00
|
|
|
"merkle-lib": "^2.0.10",
|
2016-12-18 01:24:00 +11:00
|
|
|
"pushdata-bitcoin": "^1.0.1",
|
2015-03-17 12:31:53 +11:00
|
|
|
"randombytes": "^2.0.1",
|
2019-05-17 08:02:53 -04:00
|
|
|
"tiny-secp256k1": "^1.1.1",
|
2017-08-09 16:03:12 +10:00
|
|
|
"typeforce": "^1.11.3",
|
2016-10-06 21:53:48 +11:00
|
|
|
"varuint-bitcoin": "^1.0.4",
|
2016-02-24 13:08:40 +03:00
|
|
|
"wif": "^2.0.1"
|
2014-11-29 12:39:12 +11:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-04-19 23:10:30 +10:00
|
|
|
"bip39": "^2.3.0",
|
2018-02-01 12:54:20 +11:00
|
|
|
"bip65": "^1.0.1",
|
2017-12-01 13:13:55 +11:00
|
|
|
"bip68": "^1.0.3",
|
2018-06-25 16:15:45 +10:00
|
|
|
"bn.js": "^4.11.8",
|
2016-12-21 12:52:09 +11:00
|
|
|
"bs58": "^4.0.0",
|
2018-09-24 15:24:23 +10:00
|
|
|
"dhttp": "^3.0.0",
|
2018-09-13 17:34:50 +10:00
|
|
|
"hoodwink": "^2.0.0",
|
2016-12-18 01:24:49 +11:00
|
|
|
"minimaldata": "^1.0.2",
|
2018-05-29 11:08:38 +10:00
|
|
|
"mocha": "^5.2.0",
|
2019-05-21 15:13:38 +09:00
|
|
|
"nyc": "^14.1.1",
|
2019-03-07 15:54:58 +09:00
|
|
|
"prettier": "1.16.4",
|
2018-05-29 11:08:38 +10:00
|
|
|
"proxyquire": "^2.0.1",
|
2019-05-13 16:35:02 +07:00
|
|
|
"rimraf": "^2.6.3",
|
2019-05-21 15:13:38 +09:00
|
|
|
"tslint": "^5.16.0",
|
2019-03-05 23:51:45 +09:00
|
|
|
"typescript": "3.2.2"
|
2016-02-15 23:11:13 +03:00
|
|
|
},
|
2019-03-03 23:20:36 +09:00
|
|
|
"license": "MIT"
|
2011-09-26 17:35:29 +01:00
|
|
|
}
|