-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.31 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
{
"name": "@coinspace/cs-bitcoin-wallet",
"version": "1.2.1",
"description": "Bitcoin Wallet for Coin Wallet",
"author": "Coin Wallet <support@coin.space> (https://coin.space/)",
"license": "MIT",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./symbols": "./lib/symbols.js"
},
"repository": {
"type": "git",
"url": "https://github.com/CoinSpace/cs-bitcoin-wallet.git"
},
"scripts": {
"lint": "eslint lib test index.js",
"test": "mocha test --reporter spec"
},
"dependencies": {
"@noble/curves": "^1.0.0",
"@noble/hashes": "^1.3.0",
"@scure/base": "^1.1.1",
"@scure/bip32": "^1.3.0",
"@scure/btc-signer": "^1.4.0",
"cashaddr": "^1.0.0"
},
"peerDependencies": {
"@coinspace/cs-common": "^1.1.0"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-coinspace": "^2.1.0",
"mocha": "^10.2.0",
"sinon": "^17.0.0"
},
"eslintConfig": {
"extends": [
"coinspace"
],
"env": {
"browser": true
},
"parserOptions": {
"requireConfigFile": false,
"sourceType": "module"
},
"overrides": [
{
"files": [
"*.test.js",
"test/*"
],
"env": {
"node": true,
"mocha": true
}
}
]
}
}