-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.37 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.37 KB
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
{
"name": "@berrywallet/core",
"version": "0.4.10",
"description": "Berrywallet main Core for work with common cryptocurrencies like Bitcoin, Ethereum, Dash, Litecoin",
"keywords": [
"bip32",
"bitcoin",
"litecoin",
"dash",
"ethereum",
"segwit"
],
"repository": "https://github.com/berrywallet/core",
"homepage": "https://berrywallet.io",
"author": "Berrywallet <berry@berrywallet.com>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "LGPL-3.0",
"scripts": {
"build": "npm run clear && npm run build:ts",
"clear": "rm -rf ./lib",
"build:ts": "tsc --esModuleInterop",
"build:gulp": "gulp",
"test": "mocha -t 20000",
"tag:patch": "yarn version --new-version patch",
"tag:minor": "yarn version --new-version minor",
"publish:alpha": "yarn publish --tag next"
},
"dependencies": {
"axios": "0.18.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"bignumber.js": "8.0.1",
"bip32": "1.0.2",
"bip39": "2.5.0",
"bitcoinjs-lib": "3.3.2",
"bluebird": "3.5.1",
"bottleneck": "1.16.0",
"coinselect": "3.1.11",
"create-hash": "1.2.0",
"debug": "3.1.0",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "5.2.0",
"etherscan-api": "6.0.2",
"lodash": "4.17.10",
"queue": "4.4.2",
"socket.io-client": "2.1.1",
"wif": "2.0.6"
},
"devDependencies": {
"@types/bip32": "1.0.0",
"@types/bip39": "2.4.0",
"@types/bitcoinjs-lib": "3.4.0",
"@types/debug": "0.0.30",
"@types/ethereumjs-tx": "1.0.0",
"@types/jest": "23.3.1",
"@types/lodash": "4.14.116",
"@types/socket.io": "1.4.36",
"@types/socket.io-client": "1.4.32",
"@warren-bank/ethereumjs-tx-sign": "2.0.0",
"assert": "1.4.1",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-preset-es2015": "6.24.1",
"gulp": "3.9.1",
"gulp-flatten": "0.4.0",
"gulp-json-editor": "2.4.2",
"istanbul": "0.4.5",
"jest": "23.5.0",
"jshint": "2.9.6",
"mocha": "5.2.0",
"ts-jest": "23.1.3",
"types-ethereumjs-util": "0.0.5",
"typescript": "2.7.2"
}
}