fcoin/package.json
2016-02-21 04:37:50 -08:00

42 lines
907 B
JSON

{
"name": "bcoin",
"version": "1.0.0-alpha",
"description": "Bitcoin bike-shed",
"main": "./lib/bcoin.js",
"bin": "./bin/node",
"preferGlobal": false,
"scripts": {
"test": "mocha --reporter spec test/*-test.js"
},
"repository": "git://github.com/indutny/bcoin.git",
"keywords": [
"bitcoin",
"bcoin",
"wallet"
],
"author": "Fedor Indutny <fedor@indutny.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/bcoin/issues"
},
"homepage": "https://github.com/indutny/bcoin",
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"bn.js": "4.6.3",
"elliptic": "6.0.2",
"hash.js": "1.0.3",
"secp256k1": "3.0.0",
"inherits": "2.0.1",
"leveldown": "1.4.4",
"level-js": "2.2.3",
"levelup": "1.3.1",
"request": "2.67.0"
},
"devDependencies": {
"browserify": "13.0.0",
"mocha": "1.21.5"
}
}