bitcoinjs-lib/package.json

93 lines
2 KiB
JSON
Raw Normal View History

2011-09-26 17:35:29 +01:00
{
"name": "bitcoinjs-lib",
2016-02-05 14:30:57 +11:00
"version": "2.2.0",
2011-09-26 17:35:29 +01:00
"description": "Client-side Bitcoin JavaScript library",
"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"
}
],
"scripts": {
2015-09-05 14:17:37 +10:00
"coverage": "mocha --require blanket -R travis-cov",
"coverage-local": "mocha --require blanket -R html-cov",
"integration": "mocha test/integration/",
2015-09-05 14:17:37 +10:00
"prepublish": "npm run test",
2015-02-23 10:44:05 +11:00
"standard": "standard",
2015-09-05 14:17:37 +10:00
"test": "npm run standard && npm run unit",
"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"
},
"files": [
"src"
],
2015-09-05 14:17:37 +10:00
"config": {
"blanket": {
"pattern": [
""
],
"data-cover-never": [
"node_modules",
"test"
]
},
"travis-cov": {
"threshold": 99
}
},
2014-03-08 13:02:40 +08:00
"dependencies": {
"bigi": "^1.4.0",
"bip66": "^1.1.0",
2015-03-17 12:31:53 +11:00
"bs58check": "^1.0.5",
"buffer-compare": "^1.1.0",
2015-09-25 16:58:48 +10:00
"buffer-equals": "^1.0.3",
2015-09-25 17:38:48 +10:00
"buffer-reverse": "^1.0.0",
2015-03-17 12:31:53 +11:00
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"ecurve": "^1.0.0",
2015-03-17 12:31:53 +11:00
"randombytes": "^2.0.1",
"typeforce": "^1.6.2",
2016-02-24 13:08:40 +03:00
"wif": "^2.0.1"
2014-11-29 12:39:12 +11:00
},
"devDependencies": {
"async": "^1.5.0",
2015-09-05 14:17:37 +10:00
"blanket": "^1.1.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-08-07 14:47:07 +10:00
"cb-http-client": "^0.2.0",
2015-07-24 13:54:41 +10:00
"httpify": "^1.0.0",
"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-09-05 14:17:37 +10:00
"standard": "^5.0.0",
"travis-cov": "^0.2.0"
2016-02-15 23:11:13 +03:00
},
"license": "MIT"
2011-09-26 17:35:29 +01:00
}