2011-09-26 17:35:29 +01:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2015-04-10 10:38:09 +10:00
|
|
|
"version": "2.0.0-pre",
|
2011-09-26 17:35:29 +01:00
|
|
|
"description": "Client-side Bitcoin JavaScript library",
|
2013-02-17 00:39:15 -05:00
|
|
|
"main": "./src/index.js",
|
2011-09-26 17:35:29 +01:00
|
|
|
"keywords": [
|
|
|
|
"bitcoin",
|
|
|
|
"browser",
|
|
|
|
"client",
|
|
|
|
"library"
|
|
|
|
],
|
2014-06-10 17:48:32 +10: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 00:39:15 -05:00
|
|
|
"scripts": {
|
2015-01-13 22:29:16 +11:00
|
|
|
"compile": "browserify ./src/index.js -s bitcoin > bitcoin.js",
|
2014-07-16 09:55:24 +08:00
|
|
|
"coverage": "istanbul cover _mocha -- test/*.js",
|
|
|
|
"coveralls": "npm run-script coverage && coveralls < coverage/lcov.info",
|
2015-07-07 15:01:13 +10:00
|
|
|
"integration": "mocha test/integration/",
|
2015-02-23 10:44:05 +11:00
|
|
|
"standard": "standard",
|
2015-06-23 16:10:03 +10:00
|
|
|
"test": "npm run-script unit && npm run standard",
|
2015-07-07 15:01:13 +10:00
|
|
|
"unit": "mocha"
|
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"
|
|
|
|
},
|
2014-03-08 13:02:40 +08:00
|
|
|
"dependencies": {
|
2015-01-09 14:19:32 +11:00
|
|
|
"bigi": "^1.4.0",
|
2015-03-17 12:31:53 +11:00
|
|
|
"bs58check": "^1.0.5",
|
|
|
|
"create-hash": "^1.1.0",
|
|
|
|
"create-hmac": "^1.1.3",
|
2015-02-02 19:04:16 +11:00
|
|
|
"ecurve": "^1.0.0",
|
2015-03-17 12:31:53 +11:00
|
|
|
"randombytes": "^2.0.1",
|
2015-03-16 16:00:24 +11:00
|
|
|
"typeforce": "^1.0.0"
|
2014-11-29 12:39:12 +11:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2014-12-09 11:54:36 +11:00
|
|
|
"async": "^0.9.0",
|
2015-05-21 00:43:38 +10:00
|
|
|
"browserify": "^10.0.0",
|
2015-01-09 14:18:06 +11:00
|
|
|
"bs58": "^2.0.1",
|
2015-05-30 18:58:07 +08:00
|
|
|
"cb-blockr": "^3.1.1",
|
|
|
|
"cb-insight": "git://github.com/weilu/cb-insight",
|
2014-11-29 12:39:12 +11:00
|
|
|
"coveralls": "^2.11.2",
|
2015-07-24 13:54:41 +10:00
|
|
|
"httpify": "^1.0.0",
|
2015-01-09 14:18:06 +11:00
|
|
|
"istanbul": "^0.3.5",
|
2015-03-16 16:00:24 +11:00
|
|
|
"mocha": "^2.2.0",
|
2015-03-18 23:30:04 +08:00
|
|
|
"proxyquire": "^1.4.0",
|
2015-02-23 10:36:57 +11:00
|
|
|
"sinon": "^1.12.2",
|
2015-05-30 16:10:46 +10:00
|
|
|
"standard": "^4.0.0"
|
2011-09-26 17:35:29 +01:00
|
|
|
}
|
|
|
|
}
|