itns-sidechain/package.json
2018-08-10 16:34:06 -07:00

83 lines
2.1 KiB
JSON

{
"name": "hsd",
"version": "0.0.0",
"private": true,
"description": "Cryptocurrency bike-shed",
"license": "MIT",
"repository": "git://github.com/handshake-org/hsd.git",
"homepage": "https://github.com/handshake-org/hsd",
"bugs": {
"url": "https://github.com/handshake-org/hsd/issues"
},
"author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
"keywords": [
"blockchain",
"cryptocurrency",
"handshake",
"hns",
"wallet"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bcfg": "~0.1.2",
"bcrypto": "~1.1.0",
"bcuckoo": "~0.5.0",
"bdb": "~1.1.0",
"bdns": "~0.1.1",
"bevent": "~0.1.1",
"bfile": "~0.1.1",
"bfilter": "~1.0.0",
"bheep": "~0.1.1",
"binet": "~0.3.1",
"blgr": "~0.1.1",
"blru": "~0.1.2",
"blst": "~0.1.1",
"bmutex": "~0.1.2",
"bns": "~0.3.0",
"bs32": "~0.1.1",
"bsert": "~0.0.4",
"bsip": "~0.1.1",
"bsock": "~0.1.2",
"bsocks": "~0.2.1",
"bstring": "~0.2.0",
"btcp": "~0.1.1",
"buffer-map": "~0.0.2",
"bufio": "~1.0.1",
"bupnp": "~0.2.2",
"bval": "~0.1.2",
"bweb": "~0.1.3",
"hs-client": "~0.0.2",
"mrmr": "~0.1.1",
"n64": "~0.2.1",
"urkel": "~0.5.1"
},
"devDependencies": {
"eslint": "^5.1.0",
"mocha": "^5.2.0"
},
"main": "./lib/hsd.js",
"bin": {
"hsd": "./bin/hsd",
"hsd-node": "./bin/node",
"hsd-spvnode": "./bin/spvnode"
},
"scripts": {
"lint": "eslint $(cat .eslintfiles) || exit 0",
"lint-file": "eslint",
"test": "mocha --reporter spec test/*.js",
"test-browser": "NODE_BACKEND=js mocha --reporter spec test/*.js",
"test-file": "mocha --reporter spec",
"test-file-browser": "NODE_BACKEND=js mocha --reporter spec"
},
"browser": {
"./lib/covenants/reserved": "./lib/covenants/reserved-browser.js",
"./lib/dns/icann": "./lib/dns/icann-browser.js",
"./lib/hd/nfkd": "./lib/hd/nfkd-compat.js",
"./lib/hd/wordlist": "./lib/hd/wordlist-browser.js",
"./lib/workers/child": "./lib/workers/child-browser.js",
"./lib/workers/parent": "./lib/workers/parent-browser.js",
"./lib/hsd": "./lib/hsd-browser.js"
}
}