2011-09-26 18:35:29 +02:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2016-08-08 07:46:17 +02:00
|
|
|
"version": "2.3.0",
|
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": {
|
|
|
|
"node": ">=0.12"
|
2016-10-06 12:22:24 +02:00
|
|
|
},
|
2011-09-26 18:35:29 +02:00
|
|
|
"keywords": [
|
|
|
|
"bitcoin",
|
|
|
|
"browser",
|
|
|
|
"client",
|
|
|
|
"library"
|
|
|
|
],
|
2014-06-10 09:48:32 +02:00
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Daniel Cousens",
|
|
|
|
"email": "bitcoin@dcousens.com",
|
|
|
|
"url": "http://dcousens.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Kyle Drake",
|
|
|
|
"email": "kyle@kyledrake.net",
|
|
|
|
"url": "http://kyledrake.net/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Wei Lu",
|
|
|
|
"email": "luwei.here@gmail.com",
|
|
|
|
"url": "http://weilu.github.io/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Stefan Thomas",
|
|
|
|
"email": "justmoon@members.fsf.org",
|
|
|
|
"url": "http://www.justmoon.net"
|
|
|
|
}
|
|
|
|
],
|
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": {
|
2015-01-09 04:19:32 +01:00
|
|
|
"bigi": "^1.4.0",
|
2015-08-22 03:54:00 +02:00
|
|
|
"bip66": "^1.1.0",
|
2016-12-17 15:24:00 +01:00
|
|
|
"bitcoin-ops": "^1.3.0",
|
2015-03-17 02:31:53 +01:00
|
|
|
"bs58check": "^1.0.5",
|
2015-09-25 09:38:48 +02:00
|
|
|
"buffer-reverse": "^1.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",
|
2016-10-07 08:03:12 +02:00
|
|
|
"merkle-lib": "^1.0.0",
|
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",
|
2016-09-30 08:25:13 +02:00
|
|
|
"typeforce": "^1.8.7",
|
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": {
|
2016-10-07 02:34:33 +02:00
|
|
|
"async": "^2.0.1",
|
|
|
|
"bs58": "^3.0.0",
|
2015-08-07 06:47:07 +02:00
|
|
|
"cb-http-client": "^0.2.0",
|
2016-10-12 05:31:41 +02:00
|
|
|
"coinselect": "^3.1.1",
|
2016-08-31 07:21:36 +02:00
|
|
|
"minimaldata": "^1.0.0",
|
2016-10-07 02:34:33 +02:00
|
|
|
"mocha": "^3.1.0",
|
2016-09-14 14:25:12 +02:00
|
|
|
"nyc": "^8.1.0",
|
2015-03-18 16:30:04 +01:00
|
|
|
"proxyquire": "^1.4.0",
|
2015-02-23 00:36:57 +01:00
|
|
|
"sinon": "^1.12.2",
|
2016-09-14 14:25:12 +02:00
|
|
|
"standard": "^8.0.0"
|
2016-02-15 21:11:13 +01:00
|
|
|
},
|
|
|
|
"license": "MIT"
|
2011-09-26 18:35:29 +02:00
|
|
|
}
|