82 lines
2.2 KiB
JSON
82 lines
2.2 KiB
JSON
{
|
|
"name": "hsd",
|
|
"version": "2.1.5",
|
|
"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.6",
|
|
"bcrypto": "~5.3.0",
|
|
"bdb": "~1.3.0",
|
|
"bdns": "~0.1.5",
|
|
"bevent": "~0.1.5",
|
|
"bfile": "~0.2.2",
|
|
"bfilter": "~1.0.5",
|
|
"bheep": "~0.1.5",
|
|
"binet": "~0.3.6",
|
|
"blgr": "~0.1.8",
|
|
"blru": "~0.1.6",
|
|
"blst": "~0.1.5",
|
|
"bmutex": "~0.1.6",
|
|
"bns": "~0.13.0",
|
|
"bsert": "~0.0.10",
|
|
"bsock": "~0.1.9",
|
|
"bsocks": "~0.2.5",
|
|
"btcp": "~0.1.5",
|
|
"buffer-map": "~0.0.7",
|
|
"bufio": "~1.0.7",
|
|
"bupnp": "~0.2.6",
|
|
"bval": "~0.1.6",
|
|
"bweb": "~0.1.10",
|
|
"goosig": "~0.9.0",
|
|
"hs-client": "~0.0.9",
|
|
"n64": "~0.2.10",
|
|
"urkel": "~0.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"bmocha": "^2.1.5"
|
|
},
|
|
"main": "./lib/hsd.js",
|
|
"bin": {
|
|
"hsd": "./bin/hsd",
|
|
"hsd-node": "./bin/node",
|
|
"hsd-spvnode": "./bin/spvnode",
|
|
"hs-seeder": "./bin/hs-seeder",
|
|
"hs-wallet": "./bin/hsw",
|
|
"hsd-cli": "./bin/hsd-cli",
|
|
"hsw-cli": "./bin/hsw-cli"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint $(cat .eslintfiles)",
|
|
"lint-file": "eslint",
|
|
"test": "bmocha --reporter spec test/*.js",
|
|
"test-browser": "NODE_BACKEND=js bmocha --reporter spec test/*.js",
|
|
"test-file": "bmocha --reporter spec",
|
|
"test-file-browser": "NODE_BACKEND=js bmocha --reporter spec",
|
|
"test-ci": "nyc --reporter lcov bmocha -- --reporter spec test/*.js"
|
|
},
|
|
"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"
|
|
}
|
|
}
|