forked from MetaMask/eth-ledger-bridge-keyring
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "@block-wallet/eth-ledger-bridge-keyring",
"version": "0.15.0",
"description": "A block-wallet compatible keyring, for ledger hardware wallets",
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint . --ext .js",
"lint:fix": "eslint --fix . --ext .js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/block-wallet/eth-ledger-bridge-keyring.git"
},
"keywords": [
"ethereum",
"keyring",
"ledger",
"block-wallet"
],
"author": "Block Wallet",
"license": "ISC",
"bugs": {
"url": "https://github.com/block-wallet/eth-ledger-bridge-keyring/issues"
},
"homepage": "https://github.com/block-wallet/eth-ledger-bridge-keyring#readme",
"dependencies": {
"@ethereumjs/rlp": "^4.0.0",
"@ethereumjs/tx": "^4.0.0",
"@ethereumjs/util": "^8.0.0",
"eth-sig-util": "^2.0.0",
"hdkey": "0.8.0"
},
"devDependencies": {
"@ethereumjs/common": "^3.0.2",
"@lavamoat/allow-scripts": "^2.3.0",
"@metamask/eslint-config": "^3.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^6.2.2",
"ethereumjs-tx": "^1.3.4",
"mocha": "^5.0.4"
},
"packageManager": "[email protected]",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"eth-sig-util>ethereumjs-abi>ethereumjs-util>keccak": false,
"eth-sig-util>ethereumjs-util>keccak": false,
"ethereumjs-tx>ethereumjs-util>keccak": false,
"ethereumjs-util>ethereum-cryptography>keccak": false,
"ethereumjs-util>ethereum-cryptography>secp256k1": false,
"eth-sig-util>ethereumjs-util>ethereum-cryptography>keccak": false,
"eth-sig-util>ethereumjs-util>ethereum-cryptography>secp256k1": false,
"hdkey>secp256k1": false
}
}
}