itns-sidechain/package.json

94 lines
2.6 KiB
JSON
Raw Normal View History

2014-04-28 17:12:26 +04:00
{
2018-01-05 04:07:16 -08:00
"name": "handshake",
"version": "0.0.1",
"description": "Cryptocurrency bike-shed",
2017-01-11 23:39:23 -08:00
"license": "MIT",
2018-01-05 04:07:16 -08:00
"repository": "git://github.com/bcoin-org/handshake.git",
"homepage": "https://github.com/bcoin-org/handshake",
2017-01-11 23:39:23 -08:00
"bugs": {
2018-01-05 04:07:16 -08:00
"url": "https://github.com/bcoin-org/handshake/issues"
2017-01-11 23:39:23 -08:00
},
2018-01-05 04:07:16 -08:00
"author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
2014-04-28 17:12:26 +04:00
"keywords": [
2016-07-04 05:36:06 -07:00
"bcoin",
2014-04-28 17:12:26 +04:00
"bitcoin",
2016-02-21 04:57:33 -08:00
"blockchain",
2017-05-31 06:25:55 -07:00
"cryptocurrency",
2018-01-05 04:07:16 -08:00
"handshake",
2016-02-19 22:29:33 -08:00
"wallet"
2014-04-28 17:12:26 +04:00
],
2016-02-19 22:29:33 -08:00
"engines": {
"node": ">=7.6.0"
2016-02-19 22:29:33 -08:00
},
2014-04-28 17:12:26 +04:00
"dependencies": {
2017-12-29 15:45:35 -08:00
"bcfg": "~0.0.1",
"bclient": "~0.0.1",
2018-01-04 14:33:39 -08:00
"bcrypto": "~0.1.0",
2017-12-30 21:30:42 -08:00
"bdb": "~0.0.2",
2017-12-29 15:45:35 -08:00
"bdns": "~0.0.1",
"bevent": "~0.0.1",
"bfile": "~0.0.1",
"bfilter": "~0.0.1",
"binet": "~0.0.1",
"blgr": "~0.0.1",
"bmutex": "~0.0.1",
2017-12-28 18:41:09 -08:00
"bn.js": "~4.11.8",
2017-12-29 15:45:35 -08:00
"bsock": "~0.0.1",
"bsocks": "~0.0.1",
"bstring": "~0.0.1",
"btcp": "~0.0.1",
"bufio": "~0.0.1",
"bupnp": "~0.0.1",
"bval": "~0.0.1",
"bweb": "~0.0.1",
2017-12-28 18:41:09 -08:00
"n64": "~0.1.0"
2016-02-21 04:57:33 -08:00
},
2014-04-28 17:12:26 +04:00
"devDependencies": {
2017-12-28 11:19:52 -08:00
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
2017-05-31 06:25:55 -07:00
"babel-plugin-transform-runtime": "^6.23.0",
2017-12-28 11:19:52 -08:00
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
2017-12-19 11:29:21 -08:00
"browserify": "^14.5.0",
2017-12-28 11:19:52 -08:00
"eslint": "^4.14.0",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
2017-12-19 11:29:21 -08:00
"uglify-es": "^3.1.3",
2017-12-28 11:19:52 -08:00
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^3.10.0"
},
2017-01-11 23:39:23 -08:00
"main": "./lib/bcoin.js",
"bin": {
2017-08-07 03:17:41 -07:00
"bcoin": "./bin/bcoin",
"bcoin-node": "./bin/node",
"bcoin-spvnode": "./bin/spvnode"
2017-01-11 23:39:23 -08:00
},
"scripts": {
2017-12-28 11:19:52 -08:00
"browserify": "browserify -s bcoin lib/bcoin-browser.js | uglifyjs -c > bcoin.js",
2017-12-14 19:07:25 -08:00
"clean": "rm -f {browser/,}{bcoin.js,bcoin-worker.js,app.js,worker.js}",
"docs": "jsdoc -c jsdoc.json",
2017-08-07 01:25:07 -07:00
"lint": "eslint $(cat .eslintfiles) || exit 0",
"lint-file": "eslint",
2017-08-07 01:25:07 -07:00
"test": "mocha --reporter spec test/*.js",
2017-12-28 11:19:52 -08:00
"test-browser": "NODE_BACKEND=js mocha --reporter spec test/*.js",
"test-file": "mocha --reporter spec",
2017-12-28 11:19:52 -08:00
"test-file-browser": "NODE_BACKEND=js mocha --reporter spec",
"webpack": "webpack --config webpack.browser.js",
"webpack-browser": "webpack --config webpack.browser.js",
"webpack-compat": "webpack --config webpack.compat.js",
2017-12-14 19:07:25 -08:00
"webpack-app": "webpack --config webpack.app.js"
2017-12-19 11:29:21 -08:00
},
"browser": {
"./lib/hd/nfkd": "./lib/hd/nfkd-compat.js",
2017-12-19 11:29:21 -08:00
"./lib/hd/wordlist": "./lib/hd/wordlist-browser.js",
"./lib/workers/child": "./lib/workers/child-browser.js",
"./lib/workers/parent": "./lib/workers/parent-browser.js",
2017-12-27 19:46:35 -08:00
"./lib/bcoin": "./lib/bcoin-browser.js"
2017-12-19 11:29:21 -08:00
},
"browserify": {
"transform": [
"babelify"
]
2014-04-28 17:12:26 +04:00
}
}