This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
70 lines (70 loc) · 2.26 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
{
"name": "@metamask/eth-hd-keyring",
"version": "7.0.1",
"description": "A simple standard interface for a seed phrase generated set of Ethereum accounts.",
"keywords": [
"ethereum",
"keyring"
],
"homepage": "https://github.com/MetaMask/eth-hd-keyring#readme",
"bugs": {
"url": "https://github.com/MetaMask/eth-hd-keyring/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/eth-hd-keyring.git"
},
"license": "ISC",
"author": "Dan Finlay",
"main": "index.js",
"scripts": {
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"test": "jest"
},
"dependencies": {
"@ethereumjs/util": "^8.1.0",
"@metamask/eth-sig-util": "^7.0.0",
"@metamask/scure-bip39": "^2.1.0",
"@metamask/utils": "^8.1.0",
"ethereum-cryptography": "^2.1.2"
},
"devDependencies": {
"@ethereumjs/tx": "^4.0.1",
"@lavamoat/allow-scripts": "^3.0.4",
"@lavamoat/preinstall-always-fail": "^1.0.0",
"@metamask/auto-changelog": "^2.5.0",
"@metamask/bip39": "^4.0.0",
"@metamask/eslint-config": "^8.0.0",
"@metamask/eslint-config-jest": "^9.0.0",
"@metamask/eslint-config-nodejs": "^8.0.0",
"@metamask/eth-hd-keyring": "4.0.1",
"@types/jest": "^29.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^29.4.3",
"prettier": "^2.4.1",
"prettier-plugin-packagejson": "^2.2.12"
},
"packageManager": "[email protected]",
"engines": {
"node": "^16.20 || ^18.16 || >=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"@metamask/eth-hd-keyring>ethereumjs-util>ethereum-cryptography>keccak": false,
"@metamask/eth-hd-keyring>ethereumjs-util>ethereum-cryptography>secp256k1": false
}
}
}