forked from bcoin-org/bcoin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 4.44 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "bcoin",
"version": "2.0.0-dev",
"description": "Bitcoin bike-shed",
"license": "MIT",
"repository": "git://github.com/bcoin-org/bcoin.git",
"homepage": "https://github.com/bcoin-org/bcoin",
"bugs": {
"url": "https://github.com/bcoin-org/bcoin/issues"
},
"author": "Fedor Indutny <[email protected]>",
"contributors": [
"Christopher Jeffrey <[email protected]>"
],
"keywords": [
"bcoin",
"bitcoin",
"blockchain",
"cryptocurrency",
"wallet"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"bcfg": "git+https://github.com/bcoin-org/bcfg.git#semver:~0.1.6",
"bcrypto": "git+https://github.com/bcoin-org/bcrypto.git#semver:~3.1.11",
"bcurl": "git+https://github.com/bcoin-org/bcurl.git#semver:^0.1.6",
"bdb": "git+https://github.com/bcoin-org/bdb.git#semver:~1.2.1",
"bdns": "git+https://github.com/bcoin-org/bdns.git#semver:~0.1.5",
"bevent": "git+https://github.com/bcoin-org/bevent.git#semver:~0.1.5",
"bfile": "git+https://github.com/bcoin-org/bfile.git#semver:~0.2.1",
"bfilter": "git+https://github.com/bcoin-org/bfilter.git#semver:~1.0.5",
"bheep": "git+https://github.com/bcoin-org/bheep.git#semver:~0.1.5",
"binet": "git+https://github.com/bcoin-org/binet.git#semver:~0.3.5",
"blgr": "git+https://github.com/bcoin-org/blgr.git#semver:~0.1.7",
"blru": "git+https://github.com/bcoin-org/blru.git#semver:~0.1.6",
"blst": "git+https://github.com/bcoin-org/blst.git#semver:~0.1.5",
"bmutex": "git+https://github.com/bcoin-org/bmutex.git#semver:~0.1.6",
"brq": "git+https://github.com/bcoin-org/brq.git#semver:~0.1.7",
"bs32": "git+https://github.com/bcoin-org/bs32.git#semver:=0.1.6",
"bsert": "git+https://github.com/chjj/bsert.git#semver:~0.0.10",
"bsip": "git+https://github.com/bcoin-org/bsip.git#semver:~0.1.9",
"bsock": "git+https://github.com/bcoin-org/bsock.git#semver:~0.1.9",
"bsocks": "git+https://github.com/bcoin-org/bsocks.git#semver:~0.2.6",
"bstring": "git+https://github.com/bcoin-org/bstring.git#semver:~0.3.9",
"btcp": "git+https://github.com/bcoin-org/btcp.git#semver:~0.1.5",
"buffer-map": "git+https://github.com/chjj/buffer-map.git#semver:~0.0.7",
"bufio": "git+https://github.com/bcoin-org/bufio.git#semver:~1.0.6",
"bupnp": "git+https://github.com/bcoin-org/bupnp.git#semver:~0.2.6",
"bval": "git+https://github.com/bcoin-org/bval.git#semver:~0.1.6",
"bweb": "git+https://github.com/bcoin-org/bweb.git#semver:=0.1.9",
"loady": "git+https://github.com/chjj/loady.git#semver:~0.0.1",
"mrmr": "git+https://github.com/bcoin-org/mrmr.git#semver:~0.1.8",
"n64": "git+https://github.com/chjj/n64.git#semver:~0.2.10",
"nan": "git+https://github.com/braydonf/nan.git#semver:=2.14.0"
},
"bundleDependencies": [
"bcfg",
"bcrypto",
"bcurl",
"bdb",
"bdns",
"bevent",
"bfile",
"bfilter",
"bheep",
"binet",
"blgr",
"blru",
"blst",
"bmutex",
"brq",
"bs32",
"bsert",
"bsip",
"bsock",
"bsocks",
"bstring",
"btcp",
"buffer-map",
"bufio",
"bupnp",
"bval",
"bweb",
"loady",
"mrmr",
"n64",
"nan"
],
"devDependencies": {
"bmocha": "git+https://github.com/bcoin-org/bmocha.git#semver:=2.1.2"
},
"main": "./lib/bcoin.js",
"bin": {
"bcoin": "./bin/bcoin",
"bcoin-node": "./bin/node",
"bcoin-spvnode": "./bin/spvnode",
"bwallet": "./bin/bwallet",
"bcoin-cli": "./bin/bcoin-cli",
"bwallet-cli": "./bin/bwallet-cli"
},
"scripts": {
"browserify": "browserify -s bcoin lib/bcoin-browser.js | uglifyjs -c > bcoin.js",
"clean": "rm -f {browser/,}{bcoin.js,bcoin-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"
},
"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/bcoin": "./lib/bcoin-browser.js"
}
}