bitcore/package.json

106 lines
2.4 KiB
JSON
Raw Normal View History

2013-07-04 13:02:18 -07:00
{
"name": "bitcore",
2013-07-04 13:02:18 -07:00
"description": "Bitcoin Library",
2014-04-29 15:50:15 -07:00
"version": "0.1.17",
2013-07-04 13:02:18 -07:00
"author": {
"name": "Stephen Pair",
"email": "stephen@bitpay.com"
},
"contributors": [
2014-01-30 12:17:06 -08:00
{
"name": "Stefan Thomas",
"email": "moon@justmoon.net"
},
{
"name": "Jeff Garzik",
"email": "jgarzik@bitpay.com"
},
{
"name": "Manuel Araoz",
"email": "manuelaraoz@gmail.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
},
{
"name": "Ryan X. Charles",
"email": "ryan@bitpay.com"
2014-04-11 10:56:37 -07:00
},
{
"name": "Gordon Hall",
"email": "gordon@bitpay.com"
2014-01-30 12:17:06 -08:00
}
],
2013-07-04 13:02:18 -07:00
"keywords": [
"bitcoin",
"btc",
"satoshi",
"money",
"currency",
"virtual"
],
2014-03-11 19:18:26 -07:00
"main": "bitcore.js",
2013-07-04 13:02:18 -07:00
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore.git"
2013-07-04 13:02:18 -07:00
},
2014-02-24 19:07:56 -08:00
"scripts": {
2014-04-15 06:36:23 -07:00
"install": "node-gyp rebuild",
"test": "mocha test -R spec",
2014-03-19 00:52:58 -07:00
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
2014-03-12 05:24:18 -07:00
"postinstall": "node browser/build.js -a"
2014-02-24 19:07:56 -08:00
},
2013-07-07 11:02:00 -07:00
"dependencies": {
"jssha": "=1.5.0",
2014-03-12 15:00:38 -07:00
"soop": "=0.1.5",
2014-01-30 12:17:06 -08:00
"bindings": "=1.1.1",
"bufferput": "git://github.com/bitpay/node-bufferput.git",
"bignum": "=0.6.2",
"binary": "=0.3.0",
"step": "=0.0.4",
"buffers": "=0.1.1",
"buffertools": "=2.1.2",
"browserify": "=3.40.0",
"browser-pack": "=2.0.1",
"commander": "=2.1.0",
2014-03-19 08:02:03 -07:00
"browserify-buffertools": "git://github.com/maraoz/browserify-buffertools.git",
2014-04-09 08:49:46 -07:00
"socks5-client": "~0.3.6",
"brfs": "=1.0.0",
"chai": "=1.9.1",
"uglifyify": "=1.2.3",
"async": "~0.2.10",
"underscore": "~1.6.0"
2014-01-30 12:17:06 -08:00
},
"devDependencies": {
"grunt-contrib-watch": "~0.5.3",
2014-01-31 09:05:37 -08:00
"grunt-mocha-test": "~0.8.2",
"grunt-shell": "~0.6.4",
"grunt-browserify": "~2.0.0",
2014-02-17 11:39:13 -08:00
"grunt-markdown": "~0.5.0",
2014-02-20 13:59:41 -08:00
"mocha": ">=1.15.1",
"brfs": "~1.0.0",
2014-03-12 05:32:02 -07:00
"commander": "~2.1.0",
2014-03-19 00:52:58 -07:00
"browser-pack": "~2.0.1",
"istanbul": "~0.2.6"
2013-07-07 11:02:00 -07:00
},
2014-04-08 13:21:02 -07:00
"testling": {
"harness": "mocha-bdd",
2014-04-09 08:38:25 -07:00
"html": "test/index-testling.html",
2014-04-08 13:21:02 -07:00
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
2014-03-18 09:57:04 -07:00
"license": "MIT",
"engines": {
"node": ">=0.10"
}
2013-07-04 13:02:18 -07:00
}