bitcoinjs-lib/package.json

71 lines
1.7 KiB
JSON
Raw Normal View History

2011-09-26 18:35:29 +02:00
{
"name": "bitcoinjs-lib",
"version": "2.0.0-pre",
2011-09-26 18:35:29 +02:00
"description": "Client-side Bitcoin JavaScript library",
"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"
}
],
"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",
"integration": "mocha test/integration/",
2015-02-23 00:44:05 +01:00
"standard": "standard",
"test": "npm run-script unit && npm run standard",
"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"
},
2014-03-08 06:02:40 +01:00
"dependencies": {
"bigi": "^1.4.0",
"bip66": "^1.0.8",
2015-03-17 02:31:53 +01:00
"bs58check": "^1.0.5",
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"ecurve": "^1.0.0",
2015-03-17 02:31:53 +01:00
"randombytes": "^2.0.1",
2015-08-11 09:01:06 +02:00
"typeforce": "^1.3.0"
2014-11-29 02:39:12 +01:00
},
"devDependencies": {
"async": "^0.9.0",
2015-05-20 16:43:38 +02:00
"browserify": "^10.0.0",
2015-01-09 04:18:06 +01:00
"bs58": "^2.0.1",
2015-08-07 06:47:07 +02:00
"cb-http-client": "^0.2.0",
2014-11-29 02:39:12 +01:00
"coveralls": "^2.11.2",
2015-07-24 05:54:41 +02:00
"httpify": "^1.0.0",
2015-01-09 04:18:06 +01:00
"istanbul": "^0.3.5",
"mocha": "^2.2.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",
2015-08-13 06:25:32 +02:00
"standard": "^5.0.0"
2011-09-26 18:35:29 +02:00
}
}