bitcoinjs-lib/package.json

82 lines
1.9 KiB
JSON
Raw Normal View History

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",
"main": "./src/index.js",
"engines": {
2017-01-04 01:23:04 +01:00
"node": ">=4.0.0"
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"
}
],
"scripts": {
2016-09-14 14:25:12 +02:00
"coverage-report": "nyc report --reporter=lcov",
"coverage-html": "nyc report --reporter=html",
2016-09-14 14:25:12 +02:00
"coverage": "nyc --check-coverage --branches 90 --functions 90 mocha",
"integration": "mocha test/integration/",
2015-02-23 00:44:05 +01:00
"standard": "standard",
"test": "npm run standard && npm run coverage",
"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"
},
"files": [
"src"
],
2014-03-08 06:02:40 +01:00
"dependencies": {
"bigi": "^1.4.0",
"bip66": "^1.1.0",
"bitcoin-ops": "^1.3.0",
"bs58check": "^2.0.0",
2015-03-17 02:31:53 +01:00
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"ecurve": "^1.0.0",
"merkle-lib": "^1.0.0",
"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": {
"async": "^2.0.1",
"bs58": "^4.0.0",
2015-08-07 06:47:07 +02:00
"cb-http-client": "^0.2.0",
"coinselect": "^3.1.1",
"minimaldata": "^1.0.2",
"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
}