-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "lib-wallet",
"version": "0.0.1",
"description": "Multi asset, multi chain wallet libary.",
"main": "index.js",
"scripts": {
"test": "brittle ./test/*.test.js",
"test:hdwallet": "brittle ./test/hdwallet.test.js",
"test:currency": "brittle ./test/currency.test.js",
"lint": "standard --fix",
"build:web": "npx webpack --config webpack.config.js"
},
"author": "rbndg",
"license": "APACHE-2.0",
"dependencies": {
"bare-ws": "^1.3.1",
"bignumber.js": "^9.1.2",
"fast-text-encoding": "^1.0.6",
"lib-wallet-pay-btc": "github:tetherto/lib-wallet-pay-btc#v0.0.1",
"lib-wallet-pay-eth": "github:tetherto/lib-wallet-pay-eth#v0.0.1",
"lib-wallet-store": "github:tetherto/lib-wallet-store#v0.0.1",
"punycode": "^2.3.1",
"sodium-javascript": "^0.8.0",
"wallet-seed-bip39": "github:tetherto/lib-wallet-seed-bip39#v0.0.1",
"ws": "^8.18.0"
},
"imports": {
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"fs/*": {
"bare": "bare-fs/*",
"default": "fs/*"
},
"crypto": {
"bare": "bare-crypto",
"default": "crypto"
},
"crypto/*": {
"bare": "bare-crypto/*",
"default": "crypto/*"
}
},
"optionalDependencies": {
"bare-crypto": "*"
},
"devDependencies": {
"brittle": "^3.5.0",
"commander": "^12.1.0",
"standard": "^17.1.2",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"standard" : {
"ignore": [
"/src/modules/ws-web.js"
]
}
}