70 lines
1.9 KiB
JSON
70 lines
1.9 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"
|
|
}
|
|
}
|