-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
106 lines (106 loc) · 3.71 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
{
"name": "lcoin",
"version": "1.0.0-beta.15",
"description": "Litecoin bike-shed",
"license": "MIT",
"repository": "git://github.com/bcoin-org/lcoin.git",
"homepage": "https://github.com/bcoin-org/lcoin",
"bugs": {
"url": "https://github.com/bcoin-org/lcoin/issues"
},
"author": "Fedor Indutny <[email protected]>",
"contributors": [
"Christopher Jeffrey <[email protected]> (https://github.com/chjj)"
],
"keywords": [
"bcoin",
"bitcoin",
"blockchain",
"cryptocurrency",
"wallet"
],
"engines": {
"node": "^4.5.0 || >=5.10.0"
},
"dependencies": {
"bn.js": "4.11.6",
"elliptic": "6.4.0",
"hmac-drbg": "^1.0.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": {
"babelify": "^7.3.0",
"babel-preset-es2015": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"browserify": "^14.3.0",
"hash.js": "^1.0.3",
"jsdoc": "^3.4.3",
"jshint": "^2.9.4",
"level-js": "^2.2.4",
"mocha": "^3.4.1",
"uglify-js": "^3.0.5"
},
"main": "./lib/bcoin.js",
"bin": {
"lcoin-node": "./bin/node",
"lcoin-spvnode": "./bin/spvnode",
"lcoin-cli": "./bin/cli",
"lcoin": "./bin/lcoin"
},
"scripts": {
"test": "mocha --reporter spec test/*-test.js",
"test-file": "mocha --reporter spec ",
"test-browser": "BCOIN_NO_NATIVE=1 BCOIN_USE_ELLIPTIC=1 mocha --reporter spec test/*-test.js",
"browserify": "browserify --im -o browser/bcoin.js lib/bcoin.js && browserify --im -o browser/bcoin-master.js lib/workers/master.js",
"uglify": "uglifyjs -m -o browser/bcoin.min.js browser/bcoin.js && uglifyjs -m -o browser/bcoin-master.min.js browser/bcoin-master.js",
"clean": "rm browser/bcoin.js browser/bcoin.min.js browser/bcoin-master.js browser/bcoin-master.min.js",
"lint": "jshint lib/ || exit 0",
"docs": "jsdoc -c jsdoc.json"
},
"browser": {
"./lib/blockchain/layout": "./lib/blockchain/layout-browser.js",
"./lib/crypto/backend": "./lib/crypto/backend-browser.js",
"./lib/crypto/ec": "./lib/crypto/ec-elliptic.js",
"./lib/crypto/pk": "./lib/crypto/pk-browser.js",
"./lib/db/backends": "./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/net/dns": "./lib/net/dns-browser.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/native": "./browser/empty.js",
"./lib/utils/nfkd": "./lib/utils/nfkd-browser.js",
"./lib/utils/nexttick": "./lib/utils/nexttick-browser.js",
"./lib/utils/lazy": "./lib/utils/lazy-browser.js",
"./lib/wallet/http": "./browser/empty.js",
"./lib/wallet/layout": "./lib/wallet/layout-browser.js",
"./lib/wallet/server": "./browser/empty.js",
"bcoin-native": "./browser/empty.js",
"child_process": "./browser/empty.js",
"crypto": "./browser/empty.js",
"dgram": "./browser/empty.js",
"fs": "./browser/empty.js",
"net": "./browser/empty.js",
"os": "./browser/empty.js",
"secp256k1": "./browser/empty.js"
},
"browserify": {
"transform": ["./browser/transform.js", "babelify"]
}
}