-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
91 lines (91 loc) · 2.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "bcash",
"version": "1.1.1",
"description": "Bitcoin cash bike-shed",
"license": "MIT",
"repository": "git://github.com/bcoin-org/bcash.git",
"homepage": "https://github.com/bcoin-org/bcash",
"bugs": {
"url": "https://github.com/bcoin-org/bcash/issues"
},
"author": "Fedor Indutny <fedor@indutny.com>",
"contributors": [
"Christopher Jeffrey <chjjeffrey@gmail.com>"
],
"keywords": [
"bcash",
"bitcoin",
"blockchain",
"cryptocurrency",
"wallet"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bcfg": "^0.1.5",
"bclient": "^0.1.6",
"bcrypto": "^3.0.2",
"bdb": "^1.1.5",
"bdns": "^0.1.4",
"bevent": "^0.1.4",
"bfile": "^0.1.4",
"bfilter": "^1.0.4",
"bheep": "^0.1.4",
"binet": "^0.3.4",
"blgr": "^0.1.5",
"blru": "^0.1.5",
"blst": "^0.1.4",
"bmutex": "^0.1.5",
"bsert": "0.0.8",
"bsip": "^0.1.5",
"bsock": "^0.1.5",
"bsocks": "^0.2.4",
"bstring": "^0.3.5",
"btcp": "^0.1.4",
"buffer-map": "0.0.5",
"bufio": "^1.0.4",
"bupnp": "^0.2.5",
"bval": "^0.1.5",
"bweb": "^0.1.7",
"mrmr": "^0.1.5",
"n64": "^0.2.6"
},
"devDependencies": {
"bmocha": "^1.0.0"
},
"main": "./lib/bcoin.js",
"bin": {
"bcash": "./bin/bcash",
"bcash-node": "./bin/node",
"bcash-spvnode": "./bin/spvnode",
"bcash-wallet": "./bin/bwallet"
},
"scripts": {
"browserify": "browserify -s bcash lib/bcoin-browser.js | uglifyjs -c > bcash.js",
"clean": "rm -f {browser/,}{bcash.js,bcash-worker.js,app.js,worker.js}",
"docs": "jsdoc -c jsdoc.json",
"lint": "eslint $(cat .eslintfiles) || exit 0",
"lint-file": "eslint",
"lint-ci": "eslint $(cat .eslintfiles)",
"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": "istanbul cover --report lcovonly node_modules/.bin/bmocha -- --reporter spec test/*-test.js",
"webpack": "webpack --mode production --config webpack.browser.js",
"webpack-browser": "webpack --mode production --config webpack.browser.js",
"webpack-compat": "webpack --mode production --config webpack.compat.js",
"webpack-app": "webpack --mode production --config webpack.app.js"
},
"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/bcash": "./lib/bcoin-browser.js"
},
"bcoin": {
"upstream": "15b024a3928ea8a54732bb2f5177ab1668468258"
}
}