-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "lib-wallet-pay-btc",
"version": "0.0.1",
"description": "Bitcoin asset module for WDK",
"main": "index.js",
"dependencies": {
"@bitcoinerlab/secp256k1": "github:rbndg/noble-bitcoinjs-secp256k1",
"bip32": "4.0.0",
"bip39": "3.1.0",
"bitcoinjs-lib": "6.1.5",
"ecpair": "2.1.0",
"lib-wallet": "github:rbndg/lib-wallet-main#export-wallet",
"lib-wallet-store": "github:tetherto/lib-wallet-store#v0.0.1",
"tiny-secp256k1": "2.2.3",
"wallet-seed-bip39": "github:tetherto/lib-wallet-seed-bip39#v0.0.1"
},
"devDependencies": {
"brittle": "^3.5.0",
"standard": "^17.1.0"
},
"scripts": {
"lint": "standard --fix",
"test": "npm run test:all",
"test:all": "brittle ./test/*.js",
"test:sync": "brittle ./test/sync-manager.test.js",
"test:send-tx": "brittle ./test/transactions.test.js",
"test:pay": "brittle ./test/wallet-pay-btc.test.js",
"test:key": "brittle ./test/wallet-key-btc.test.js",
"test:currency": "brittle ./test/currency.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tetherto/lib-wallet-pay-btc.git"
},
"author": "rbndg (@rbndg)",
"license": "APACHE-2.0",
"bugs": {
"url": "https://github.com/tetherto/lib-wallet-pay-btc/issues"
},
"homepage": "https://github.com/tetherto/lib-wallet-pay-btc.git",
"standard": {
"ignore": [
"/test/*.js"
]
}
}