-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
113 lines (113 loc) · 3.91 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
107
108
109
110
111
112
113
{
"name": "scpx-wallet",
"version": "0.24.7",
"description": "Scoop Core Wallet: dual-signature timelock Bitcoin wallet - multi-asset, cross-platform and open-source",
"keywords": [
"bitprotect",
"bitcc",
"bitcoin protection",
"social recovery",
"multisig",
"dualsig",
"timelock wallet",
"crypto wallet",
"cryptocurrency",
"bitcoin",
"segwit",
"btc",
"ethereum",
"eth",
"erc20",
"tether",
"usdt"
],
"repository": {
"type": "git",
"url": "https://github.com/Scoop-Tech/scpx-wallet"
},
"homepage": "https://scoop.tech",
"bugs": "https://github.com/Scoop-Tech/scpx-wallet/issues",
"main": "sw-cli.js",
"scripts": {
"help": "node --experimental-worker ./sw-cli.js --help ",
"about": "cross-env NODE_ENV=development node --no-deprecation --experimental-worker --inspect=0.0.0.0:9229 ./sw-cli.js --about",
"dev": "cross-env NODE_ENV=development node --no-deprecation --experimental-worker --inspect=0.0.0.0:9229 ./sw-cli.js --saveHistory=true",
"start": "cross-env NODE_ENV=production node --no-deprecation --experimental-worker --inspect=0.0.0.0:9229 ./sw-cli.js --saveHistory=false",
"rpc": "cross-env NODE_ENV=production node --no-deprecation --experimental-worker --inspect=0.0.0.0:9229 ./sw-cli.js --rpc=true --rpcPort=4000 --rpcRemoteHosts=::ffff:127.0.0.1 --rpcUsername=scp --rpcPassword=123",
"jestver": "cross-env NODE_ENV=test&& jest --version",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-worker jest --runInBand --forceExit --verbose --coverage --env=node"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"modulePathIgnorePatterns": [
"npm-cache",
".npm"
]
},
"author": "Dominic Morris",
"license": "AGPL-3.0",
"dependencies": {
"axios": "^0.21.1",
"base32-encode": "^1.1.1",
"bchaddrjs": "^0.3.2",
"bignumber.js": "^8.0.2",
"bip32": "2.0.6",
"bip65": "^1.0.3",
"bip68": "^1.0.3",
"bitcoinjs-lib": "5.2.0",
"bitgo-utxo-lib": "github:Scoop-Tech/bitgo-utxo-lib",
"chalk": "^2.4.2",
"circular-buffer": "^1.0.2",
"clear": "^0.1.0",
"coininfo": "^5.1.0",
"colors": "^1.3.3",
"commander": "^2.20.0",
"console-title": "^1.1.0",
"crypto-js": "^4.0.0",
"detect-node": "^2.0.4",
"dirty": "^1.1.0",
"dotenv": "^8.2.0",
"eosjs": "16.0.9",
"eosjs-keygen": "1.3.2",
"ethereum-input-data-decoder": "^0.2.0",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"figlet": "^1.2.1",
"isomorphic-ws": "^4.0.1",
"jayson": "^3.6.4",
"js-big-decimal": "^1.2.1",
"json-stringify-safe": "^5.0.1",
"localforage": "^1.7.3",
"lodash": "^4.17.15",
"minimist": ">=1.2.6",
"moment": "^2.24.0",
"p-limit": "^2.2.0",
"read-last-lines": "^1.7.1",
"redux": "^3.6.0",
"redux-batched-actions": "^0.4.1",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.1.0",
"scp-address-validator": "^0.2.8",
"socket.io-client": "2.3.1",
"tiny-secp256k1": "1.1.6",
"triple-beam": "^1.3.0",
"web3": "2.0.0-alpha.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.7.1"
},
"bin": {
"sw-cli": "./sw-cli.js"
},
"devDependencies": {
"codecov": "^3.3.0",
"cross-env": "^7.0.3",
"jest": "21.2.1",
"nodemon": "^1.19.0"
},
"engineStrict": true,
"engines": {
"node": "14.16.0",
"npm": ">=3.10.10"
}
}