-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "@dexon-foundation/eth-trezor-keyring",
"version": "0.4.0",
"description": "A MetaMask compatible keyring, for trezor hardware wallets",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint . --ext .js",
"lint:fix": "./node_modules/.bin/eslint --fix . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metamask/eth-trezor-keyring.git"
},
"keywords": [
"ethereum",
"keyring",
"trezor",
"metamask"
],
"author": "Bruno Barbieri",
"license": "ISC",
"bugs": {
"url": "https://github.com/metamask/eth-trezor-keyring/issues"
},
"homepage": "https://github.com/metamask/eth-trezor-keyring#readme",
"dependencies": {
"eth-sig-util": "^1.4.2",
"ethereumjs-tx": "^1.3.4",
"ethereumjs-util": "^5.1.5",
"events": "^2.0.0",
"hdkey": "0.8.0",
"trezor-connect": "^7.0.1"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-eslint": "^8.0.0",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"eslint": "^5.0.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^5.0.0",
"mocha": "^5.0.4"
}
}