2011-09-26 18:35:29 +02:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2015-11-25 10:16:52 +01:00
|
|
|
"version": "2.1.4",
|
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",
|
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": {
|
2015-09-05 06:17:37 +02:00
|
|
|
"coverage": "mocha --require blanket -R travis-cov",
|
|
|
|
"coverage-local": "mocha --require blanket -R html-cov",
|
2015-07-07 07:01:13 +02:00
|
|
|
"integration": "mocha test/integration/",
|
2015-09-05 06:17:37 +02:00
|
|
|
"prepublish": "npm run test",
|
2015-02-23 00:44:05 +01:00
|
|
|
"standard": "standard",
|
2015-09-05 06:17:37 +02:00
|
|
|
"test": "npm run standard && npm run unit",
|
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"
|
|
|
|
},
|
2015-09-05 06:17:37 +02:00
|
|
|
"config": {
|
|
|
|
"blanket": {
|
|
|
|
"pattern": [
|
|
|
|
""
|
|
|
|
],
|
|
|
|
"data-cover-never": [
|
|
|
|
"node_modules",
|
|
|
|
"test"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"travis-cov": {
|
|
|
|
"threshold": 99
|
|
|
|
}
|
|
|
|
},
|
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",
|
2015-03-17 02:31:53 +01:00
|
|
|
"bs58check": "^1.0.5",
|
2015-09-25 08:58:48 +02:00
|
|
|
"buffer-equals": "^1.0.3",
|
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",
|
2015-03-17 02:31:53 +01:00
|
|
|
"randombytes": "^2.0.1",
|
2015-11-05 21:58:50 +01:00
|
|
|
"typeforce": "^1.5.5",
|
2015-08-20 12:16:57 +02:00
|
|
|
"wif": "^1.1.0"
|
2014-11-29 02:39:12 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-11-06 00:49:06 +01:00
|
|
|
"async": "^1.5.0",
|
2015-09-05 06:17:37 +02:00
|
|
|
"blanket": "^1.1.0",
|
2015-05-20 16:43:38 +02:00
|
|
|
"browserify": "^10.0.0",
|
2015-01-09 04:18:06 +01:00
|
|
|
"bs58": "^2.0.1",
|
2015-08-07 06:47:07 +02:00
|
|
|
"cb-http-client": "^0.2.0",
|
2015-07-24 05:54:41 +02:00
|
|
|
"httpify": "^1.0.0",
|
2015-03-16 06:00:24 +01:00
|
|
|
"mocha": "^2.2.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",
|
2015-09-05 06:17:37 +02:00
|
|
|
"standard": "^5.0.0",
|
|
|
|
"travis-cov": "^0.2.0"
|
2011-09-26 18:35:29 +02:00
|
|
|
}
|
|
|
|
}
|