This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "ethereum-hdwallet",
"version": "0.1.2",
"description": "ethereum-hdwallet",
"main": "dist/index.js",
"bin": {
"ethereum_hdwallet": "bin/ethereum_hdwallet",
"ethereum-hdwallet": "bin/ethereum_hdwallet"
},
"scripts": {
"coverage": "node_modules/nyc/bin/nyc.js report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"test": "./node_modules/nyc/bin/nyc.js --reporter=html --reporter=text tape ./test/index.js",
"build": "babel index.js --presets babel-preset-es2015 --out-dir dist/",
"build:cli": "babel cli.js --presets babel-preset-es2015 --out-dir dist/",
"build:browser": "browserify -t [ babelify --presets [ es2015 ] ] dist/index.js > ethereum-hdwallet.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/ethereum-hdwallet"
},
"bugs": {
"url": "https://github.com/miguelmota/ethereum-hdwallet/issues"
},
"homepage": "https://github.com/miguelmota/ethereum-hdwallet",
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/ethereum-hdwallet/blob/master/LICENSE"
},
"dependencies": {
"bip39": "^3.0.2",
"eth-crypto": "^2.2.0",
"ethereum-checksum-address": "0.0.8",
"ethereumjs-tx": "^1.3.6",
"ethereumjs-wallet": "^0.6.0",
"is-buffer": "^2.0.4",
"meow": "^9.0.0",
"table": "^4.0.3"
},
"keywords": [
"ethereum",
"eth",
"hd",
"wallet",
"hdwallet",
"bip39",
"mnemonic",
"blockchain",
"keystore",
"truffle",
"smart",
"contracts"
],
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"nyc": "^15.1.0",
"tape": "^4.6.3"
}
}