87 lines
1.9 KiB
JSON
87 lines
1.9 KiB
JSON
{
|
|
"name": "bitcoinjs-lib",
|
|
"version": "2.1.0",
|
|
"description": "Client-side Bitcoin JavaScript library",
|
|
"main": "./src/index.js",
|
|
"keywords": [
|
|
"bitcoin",
|
|
"browser",
|
|
"client",
|
|
"library"
|
|
],
|
|
"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": {
|
|
"coverage": "mocha --require blanket -R travis-cov",
|
|
"coverage-local": "mocha --require blanket -R html-cov",
|
|
"integration": "mocha test/integration/",
|
|
"prepublish": "npm run test",
|
|
"standard": "standard",
|
|
"test": "npm run standard && npm run unit",
|
|
"unit": "mocha"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
|
|
},
|
|
"config": {
|
|
"blanket": {
|
|
"pattern": [
|
|
""
|
|
],
|
|
"data-cover-never": [
|
|
"node_modules",
|
|
"test"
|
|
]
|
|
},
|
|
"travis-cov": {
|
|
"threshold": 99
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"bigi": "^1.4.0",
|
|
"bip66": "^1.1.0",
|
|
"bs58check": "^1.0.5",
|
|
"buffer-equals": "^1.0.3",
|
|
"buffer-reverse": "^1.0.0",
|
|
"create-hash": "^1.1.0",
|
|
"create-hmac": "^1.1.3",
|
|
"ecurve": "^1.0.0",
|
|
"randombytes": "^2.0.1",
|
|
"typeforce": "^1.3.0",
|
|
"wif": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^0.9.0",
|
|
"blanket": "^1.1.0",
|
|
"browserify": "^10.0.0",
|
|
"bs58": "^2.0.1",
|
|
"cb-http-client": "^0.2.0",
|
|
"httpify": "^1.0.0",
|
|
"mocha": "^2.2.0",
|
|
"proxyquire": "^1.4.0",
|
|
"sinon": "^1.12.2",
|
|
"standard": "^5.0.0",
|
|
"travis-cov": "^0.2.0"
|
|
}
|
|
}
|