2011-09-26 18:35:29 +02:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2015-01-27 03:41:09 +01:00
|
|
|
"version": "1.4.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-01-13 12:29:16 +01:00
|
|
|
"compile": "browserify ./src/index.js -s bitcoin > bitcoin.js",
|
2014-07-16 03:55:24 +02:00
|
|
|
"coverage": "istanbul cover _mocha -- test/*.js",
|
|
|
|
"coveralls": "npm run-script coverage && coveralls < coverage/lcov.info",
|
2014-07-15 19:35:05 +02:00
|
|
|
"integration": "mocha --reporter list test/integration/*.js",
|
|
|
|
"jshint": "jshint --config jshint.json src/*.js ; true",
|
2014-06-21 10:12:05 +02:00
|
|
|
"test": "npm run-script unit",
|
2014-07-15 19:53:22 +02:00
|
|
|
"unit": "istanbul test mocha -- --reporter list test/*.js"
|
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"
|
|
|
|
},
|
2014-03-08 06:02:40 +01:00
|
|
|
"dependencies": {
|
2015-01-09 04:19:32 +01:00
|
|
|
"bigi": "^1.4.0",
|
2015-02-02 09:04:16 +01:00
|
|
|
"bs58check": "^1.0.4",
|
|
|
|
"ecurve": "^1.0.0",
|
|
|
|
"typeforce": "^0.1.0"
|
2014-11-29 02:39:12 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2014-12-09 01:54:36 +01:00
|
|
|
"async": "^0.9.0",
|
2015-02-02 09:04:16 +01:00
|
|
|
"browserify": "^8.1.0",
|
2015-01-09 04:18:06 +01:00
|
|
|
"bs58": "^2.0.1",
|
|
|
|
"cb-helloblock": "^0.4.10",
|
2014-11-29 02:39:12 +01:00
|
|
|
"coveralls": "^2.11.2",
|
2015-01-09 04:18:06 +01:00
|
|
|
"istanbul": "^0.3.5",
|
|
|
|
"jshint": "^2.5.11",
|
|
|
|
"mocha": "^2.1.0",
|
2014-11-29 02:39:12 +01:00
|
|
|
"mocha-lcov-reporter": "0.0.1",
|
2015-01-13 12:29:16 +01:00
|
|
|
"sinon": "^1.12.2"
|
2011-09-26 18:35:29 +02:00
|
|
|
}
|
|
|
|
}
|