-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.87 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@findeth/wallets",
"version": "0.5.2",
"description": "Library used by FindETH for wallets and derivation",
"author": "Maarten Zuidhoorn <[email protected]>",
"homepage": "https://github.com/FindETH/wallets",
"repository": {
"type": "git",
"url": "https://github.com/FindETH/wallets.git"
},
"bugs": {
"url": "https://github.com/FindETH/wallets/issues",
"email": "[email protected]"
},
"keywords": [
"ethereum",
"derivation",
"ledger",
"trezor",
"mnemonic-phrase",
"findeth"
],
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"typings": "typings/index.d.ts",
"sideEffects": false,
"engines": {
"node": "12"
},
"files": [
"lib",
"src",
"typings"
],
"scripts": {
"clean": "rimraf lib",
"build": "yarn run clean && yarn run build:source && yarn run build:declarations",
"build:source": "yarn run build:source:cjs && yarn run build:source:es",
"build:source:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src --extensions '.ts' --source-maps --out-dir lib/cjs",
"build:source:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src --extensions '.ts' --source-maps --out-dir lib/es",
"build:declarations": "tsc -p tsconfig.build.json",
"build:docs": "typedoc src",
"test": "jest",
"lint": "yarn run lint:types && yarn run lint:source && yarn run lint:format && yarn run lint:lockfile",
"lint:types": "tsc --noEmit",
"lint:source": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
"lint:format": "prettier --check --ignore-path .gitignore '**/*.{ts,tsx,js,json,yml}'",
"lint:lockfile": "lockfile-lint --type yarn --path yarn.lock --allowed-hosts yarn --validate-https --validate-checksum --validate-integrity",
"format": "prettier --write --ignore-path .gitignore '**/*.{ts,tsx,js,json,yml}'",
"prepack": "yarn run build"
},
"dependencies": {
"@findeth/abi": "^0.5.2",
"@findeth/hdnode": "^0.6.1",
"@ledgerhq/hw-app-eth": "^6.8.1",
"@ledgerhq/hw-transport": "^5.2.0",
"@ledgerhq/hw-transport-mocker": "^5.2.0",
"@ledgerhq/hw-transport-node-hid": "^5.2.0",
"@ledgerhq/hw-transport-u2f": "^5.22.0",
"@ledgerhq/hw-transport-web-ble": "^5.2.0",
"@ledgerhq/hw-transport-webhid": "^5.2.0",
"@ledgerhq/hw-transport-webusb": "^5.2.0",
"bs58": "^4.0.1",
"trezor-connect": "^8.1.16"
},
"peerDependencies": {
"@findeth/networks": ">= 0.6.2 < 1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.10.1",
"@findeth/networks": "^0.6.1",
"@types/jest": "^26.0.15",
"@types/w3c-web-usb": "^1.0.3",
"@types/web-bluetooth": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-jest": "^26.6.0",
"codecov": "^3.6.1",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^24.9.0",
"lint-staged": "^10.2.11",
"lockfile-lint": "^4.3.7",
"prettier": "^2.1.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"ts-node": "^9.0.0",
"typedoc": "^0.22.4",
"typescript": "^4.0.3"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
],
"*.{json,yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"publishConfig": {
"access": "public"
}
}