fcoin/package.json
2017-06-26 17:42:18 -07:00

107 lines
3.6 KiB
JSON

{
"name": "bcoin",
"version": "1.0.0-beta.12",
"description": "Bitcoin bike-shed",
"license": "MIT",
"repository": "git://github.com/bcoin-org/bcoin.git",
"homepage": "https://github.com/bcoin-org/bcoin",
"bugs": {
"url": "https://github.com/bcoin-org/bcoin/issues"
},
"author": "Fedor Indutny <fedor@indutny.com>",
"contributors": [
"Christopher Jeffrey <chjjeffrey@gmail.com> (https://github.com/chjj)"
],
"keywords": [
"bcoin",
"bitcoin",
"blockchain",
"cryptocurrency",
"wallet"
],
"engines": {
"node": ">=7.0.0"
},
"dependencies": {
"bn.js": "4.11.7",
"elliptic": "6.4.0",
"n64": "0.0.11"
},
"optionalDependencies": {
"bcoin-native": "0.0.19",
"leveldown": "1.7.0-0",
"secp256k1": "3.2.5",
"socket.io": "2.0.1",
"socket.io-client": "2.0.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.1.0",
"hash.js": "^1.0.3",
"jsdoc": "^3.4.3",
"level-js": "2.2.4",
"mocha": "^3.4.1",
"webpack": "^3.0.0"
},
"main": "./lib/bcoin.js",
"bin": {
"bcoin-node": "./bin/node",
"bcoin-spvnode": "./bin/spvnode",
"bcoin-cli": "./bin/cli",
"bcoin": "./bin/bcoin"
},
"scripts": {
"clean": "rm browser/bcoin.js browser/bcoin-master.js browser/bcoin-worker.js",
"docs": "jsdoc -c jsdoc.json",
"lint": "eslint lib/ test/ migrate/ examples/ bench/ bin/cli bin/node bin/spvnode || exit 0",
"lint-file": "eslint",
"test": "mocha --reporter spec test/*-test.js",
"test-browser": "BCOIN_NO_NATIVE=1 BCOIN_USE_ELLIPTIC=1 mocha --reporter spec test/*-test.js",
"test-file": "mocha --reporter spec",
"webpack": "webpack"
},
"browser": {
"bcoin-native": "./browser/empty.js",
"child_process": "./browser/empty.js",
"crypto": "./browser/empty.js",
"dgram": "./browser/empty.js",
"dns": "./browser/empty.js",
"fs": "./browser/empty.js",
"net": "./browser/empty.js",
"os": "./browser/empty.js",
"secp256k1": "./browser/empty.js",
"socket.io": "./browser/empty.js",
"./lib/blockchain/layout.js": "./lib/blockchain/layout-browser.js",
"./lib/crypto/backend.js": "./lib/crypto/backend-browser.js",
"./lib/crypto/ec.js": "./lib/crypto/ec-elliptic.js",
"./lib/crypto/pk.js": "./lib/crypto/pk-browser.js",
"./lib/db/backends.js": "./lib/db/backends-browser.js",
"./lib/env.js": "./lib/env-browser.js",
"./lib/hd/wordlist": "./lib/hd/wordlist-browser.js",
"./lib/http/base": "./browser/empty.js",
"./lib/http/client": "./browser/empty.js",
"./lib/http/request": "./browser/empty.js",
"./lib/http/rpcclient": "./browser/empty.js",
"./lib/http/server": "./browser/empty.js",
"./lib/http/wallet": "./browser/empty.js",
"./lib/mempool/layout": "./lib/mempool/layout-browser.js",
"./lib/net/dns": "./lib/net/dns-browser.js",
"./lib/net/external": "./lib/net/external-browser.js",
"./lib/net/tcp": "./lib/net/tcp-browser.js",
"./lib/net/upnp": "./lib/net/upnp-browser.js",
"./lib/utils/fs": "./browser/empty.js",
"./lib/utils/native": "./browser/empty.js",
"./lib/utils/nfkd": "./lib/utils/nfkd-browser.js",
"./lib/utils/nexttick": "./lib/utils/nexttick-browser.js",
"./lib/wallet/http": "./browser/empty.js",
"./lib/wallet/layout": "./lib/wallet/layout-browser.js",
"./lib/wallet/server": "./browser/empty.js"
}
}