fcoin/package.json
2020-12-09 11:36:16 -07:00

93 lines
2.6 KiB
JSON

{
"name": "fcoin",
"version": "1.1.5",
"description": "FLO bike-shed",
"license": "MIT",
"repository": "git://github.com/oipwg/fcoin.git",
"homepage": "https://github.com/oipwg/fcoin",
"bugs": {
"url": "https://github.com/oipwg/fcoin/issues"
},
"author": "Fedor Indutny <fedor@indutny.com>",
"contributors": [
"Christopher Jeffrey <chjjeffrey@gmail.com>",
"Sky Young <sky@oip.dev>"
],
"keywords": [
"bcoin",
"lcoin",
"fcoin",
"bitcoin",
"litecoin",
"flo",
"blockchain",
"cryptocurrency",
"wallet"
],
"engines": {
"node": ">=8.6.0"
},
"dependencies": {
"bcfg": "~0.1.6",
"@oipwg/fclient": "~0.1.7",
"bcrypto": "~3.1.11",
"bdb": "~1.1.7",
"bdns": "~0.1.5",
"bevent": "~0.1.5",
"bfile": "~0.2.1",
"bfilter": "git+https://github.com/bcoin-org/bfilter.git#semver:~2.0.0",
"bheep": "~0.1.5",
"binet": "~0.3.5",
"blgr": "~0.1.7",
"blru": "~0.1.6",
"blst": "~0.1.5",
"bmutex": "~0.1.6",
"bsert": "~0.0.10",
"bsip": "~0.1.9",
"bsock": "~0.1.9",
"bsocks": "~0.2.5",
"bstring": "~0.3.9",
"btcp": "~0.1.5",
"buffer-map": "~0.0.7",
"bufio": "~1.0.6",
"bupnp": "~0.2.6",
"bval": "~0.1.6",
"bweb": "~0.1.9",
"n64": "~0.2.10"
},
"devDependencies": {
"bmocha": "^2.1.2"
},
"main": "./lib/bcoin.js",
"bin": {
"fcoin": "./bin/fcoin",
"fcoin-node": "./bin/node",
"fcoin-spvnode": "./bin/spvnode",
"fwallet": "./bin/fwallet",
"fcoin-cli": "./bin/fcoin-cli",
"fwallet-cli": "./bin/fwallet-cli"
},
"scripts": {
"browserify": "browserify -s fcoin lib/fcoin-browser.js | uglifyjs -c > fcoin.js",
"clean": "rm -f {browser/,}{fcoin.js,fcoin-worker.js,app.js,worker.js}",
"docs": "jsdoc -c jsdoc.json",
"lint": "eslint $(cat .eslintfiles) || exit 0",
"lint-ci": "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 -a -n 'lib/**/*.js' --reporter=lcov --reporter=text npm run test",
"dev": "./bin/fcoin --prefix=\"${PWD}/tmp\" --network=testnet",
"livenet": "./bin/fcoin --prefix=\"${PWD}/tmp\""
},
"browser": {
"./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/fcoin": "./lib/fcoin-browser.js"
}
}