-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.8 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
{
"name": "bcoin",
"version": "1.0.0-pre",
"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": ">=7.6.0"
},
"dependencies": {
"bcfg": "~0.0.2",
"bclient": "~0.0.2",
"bcrypto": "~0.2.0",
"bdb": "~0.1.0",
"bdns": "~0.0.2",
"bevent": "~0.0.2",
"bfile": "~0.0.2",
"bfilter": "~0.1.2",
"bheep": "~0.0.1",
"binet": "~0.2.0",
"blgr": "~0.0.2",
"blru": "~0.0.1",
"blst": "~0.0.1",
"bmutex": "~0.0.2",
"bn.js": "~4.11.8",
"bsip": "~0.0.2",
"bsock": "~0.0.2",
"bsocks": "~0.1.0",
"bstring": "~0.0.2",
"btcp": "~0.0.2",
"bufio": "~0.1.0",
"bupnp": "~0.1.0",
"bval": "~0.0.2",
"bweb": "~0.0.2",
"golomb": "^0.2.0",
"mrmr": "~0.0.1",
"n64": "~0.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"eslint": "^4.18.2",
"jsdoc": "^3.5.5",
"mocha": "^5.0.4",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^1.2.3",
"webpack": "^4.1.1"
},
"main": "./lib/bcoin.js",
"bin": {
"bcoin": "./bin/bcoin",
"bcoin-node": "./bin/node",
"bcoin-spvnode": "./bin/spvnode",
"bwallet": "./bin/bwallet"
},
"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-file": "eslint",
"test": "mocha --reporter spec test/*.js",
"test-browser": "NODE_BACKEND=js mocha --reporter spec test/*.js",
"test-file": "mocha --reporter spec",
"test-file-browser": "NODE_BACKEND=js mocha --reporter spec",
"webpack": "webpack --config webpack.browser.js",
"webpack-browser": "webpack --config webpack.browser.js",
"webpack-compat": "webpack --config webpack.compat.js",
"webpack-app": "webpack --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/bcoin": "./lib/bcoin-browser.js"
},
"browserify": {
"transform": [
"babelify"
]
}
}