forked from bcoin-org/bcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.74 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
{
"name": "bcoin",
"version": "1.0.0-beta.12",
"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]> (https://github.com/chjj)"
],
"keywords": [
"bcoin",
"bitcoin",
"blockchain",
"cryptocurrency",
"wallet"
],
"engines": {
"node": ">=7.0.0"
},
"dependencies": {
"bn.js": "4.11.7",
"elliptic": "6.4.0",
"n64": "0.0.11"
},
"optionalDependencies": {
"bcoin-native": "0.0.19",
"leveldown": "1.7.0-0",
"secp256k1": "3.2.5",
"socket.io": "2.0.1",
"socket.io-client": "2.0.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.1.0",
"hash.js": "^1.0.3",
"jsdoc": "^3.4.3",
"level-js": "^2.2.4",
"mocha": "^3.4.1",
"webpack": "^3.0.0"
},
"main": "./lib/bcoin.js",
"bin": {
"bcoin-node": "./bin/node",
"bcoin-spvnode": "./bin/spvnode",
"bcoin-cli": "./bin/cli",
"bcoin": "./bin/bcoin"
},
"scripts": {
"clean": "rm browser/bcoin.js browser/bcoin-master.js browser/bcoin-worker.js",
"docs": "jsdoc -c jsdoc.json",
"lint": "eslint lib/ test/ migrate/ examples/ bench/ bin/cli bin/node bin/spvnode || exit 0",
"lint-file": "eslint",
"test": "mocha --reporter spec test/*-test.js",
"test-browser": "BCOIN_NO_NATIVE=1 BCOIN_USE_ELLIPTIC=1 mocha --reporter spec test/*-test.js",
"test-file": "mocha --reporter spec",
"webpack": "webpack"
},
"browser": {
"child_process": "./browser/empty.js",
"crypto": "./browser/empty.js",
"dgram": "./browser/empty.js",
"dns": "./browser/empty.js",
"fs": "./browser/empty.js",
"net": "./browser/empty.js",
"bcoin-native": "./browser/empty.js",
"secp256k1": "./browser/empty.js",
"socket.io": "./browser/empty.js",
"./lib/bcoin": "./lib/bcoin-browser.js",
"./lib/blockchain/layout.js": "./lib/blockchain/layout-browser.js",
"./lib/crypto/aes.js": "./lib/crypto/aes-browser.js",
"./lib/crypto/digest.js": "./lib/crypto/digest-browser.js",
"./lib/crypto/pbkdf2.js": "./lib/crypto/pbkdf2-browser.js",
"./lib/crypto/random.js": "./lib/crypto/random-browser.js",
"./lib/crypto/rsa.js": "./lib/crypto/rsa-browser.js",
"./lib/crypto/secp256k1.js": "./lib/crypto/secp256k1-elliptic.js",
"./lib/db/backends.js": "./lib/db/backends-browser.js",
"./lib/hd/wordlist": "./lib/hd/wordlist-browser.js",
"./lib/http/base": "./browser/empty.js",
"./lib/http/client": "./browser/empty.js",
"./lib/http/request": "./browser/empty.js",
"./lib/http/rpcclient": "./browser/empty.js",
"./lib/http/server": "./browser/empty.js",
"./lib/http/wallet": "./browser/empty.js",
"./lib/mempool/layout": "./lib/mempool/layout-browser.js",
"./lib/native": "./browser/empty.js",
"./lib/net/dns": "./lib/net/dns-browser.js",
"./lib/net/external": "./lib/net/external-browser.js",
"./lib/net/socks": "./browser/empty.js",
"./lib/net/tcp": "./lib/net/tcp-browser.js",
"./lib/net/upnp": "./lib/net/upnp-browser.js",
"./lib/utils/fs": "./browser/empty.js",
"./lib/utils/nfkd": "./lib/utils/nfkd-browser.js",
"./lib/wallet/http": "./browser/empty.js",
"./lib/wallet/layout": "./lib/wallet/layout-browser.js",
"./lib/wallet/server": "./browser/empty.js"
}
}