-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "masterscan",
"description": "Tool to scan a BIP39/BIP32 HD bitcoin wallet and send all funds to a new address",
"author": "[email protected]",
"version": "0.1.0",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "brunch watch --server",
"build": "brunch build --production"
},
"dependencies": {
"bitcore-lib": "^0.13.18",
"bitcore-mnemonic": "^1.1.1",
"bip39": "^2.5.0",
"bitcoinjs-lib": "^3.3.2",
"bootstrap": "^3.3.7",
"bower": "^1.8.4",
"canvas": "^1.6.10",
"handlebars": "^4.0.11",
"jquery": "^3.3.0",
"sass-brunch": "^2.10.4",
"toastr": "^2.1.4",
"whatwg-fetch": "^1.1.1"
},
"devDependencies": {
"auto-reload-brunch": "^2.0.0",
"babel-brunch": "^6.1.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^5.0.0",
"browserify-brunch": "^1.7.3",
"brunch": "^2.10.12",
"clean-css-brunch": "^2.10.0",
"css-brunch": "^2.10.0",
"cssify": "^0.6.0",
"javascript-brunch": "^2.10.0",
"uglify-js-brunch": "^2.10.0"
},
"browserify": {
"transform": [
"cssify"
]
}
}