forked from MyCryptoHQ/wallets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.49 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
{
"name": "@mycrypto/wallets",
"version": "1.4.4",
"description": "Wallet abstractions to be used throughout the MyCrypto product suite.",
"repository": "MyCryptoHQ/wallets",
"author": "MyCrypto",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "typings/src/index.d.ts",
"files": [
"lib",
"typings"
],
"sideEffects": false,
"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,.tsx' --source-maps --out-dir lib/cjs",
"build:source:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src --extensions '.ts,.tsx' --source-maps --out-dir lib/es",
"build:declarations": "tsc -p tsconfig.build.json",
"test": "jest",
"lint": "yarn run lint:types && yarn run lint:source && yarn run lint:format",
"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}\"",
"format": "prettier --write --ignore-path .gitignore \"**/*.{ts,tsx,js,json,yml}\"",
"prepare": "simple-git-hooks",
"prepack": "yarn build"
},
"resolutions": {
"npmlog": "6.0.0"
},
"dependencies": {
"@ethersproject/abstract-provider": "5.5.1",
"@ethersproject/address": "5.5.0",
"@ethersproject/basex": "5.5.0",
"@ethersproject/bytes": "5.5.0",
"@ethersproject/hdnode": "5.5.0",
"@ethersproject/json-wallets": "5.5.0",
"@ethersproject/sha2": "5.5.0",
"@ethersproject/signing-key": "5.5.0",
"@ethersproject/strings": "5.5.0",
"@ethersproject/transactions": "5.5.0",
"@ethersproject/wallet": "5.5.0",
"@ledgerhq/hw-app-eth": "6.23.0",
"@ledgerhq/hw-transport": "6.20.0",
"@ledgerhq/hw-transport-node-hid-noevents": "6.20.0",
"@ledgerhq/hw-transport-u2f": "5.36.0-deprecated",
"@ledgerhq/hw-transport-webhid": "6.20.0",
"@ledgerhq/hw-transport-webusb": "6.20.0",
"ethereumjs-wallet": "1.0.2",
"gridplus-sdk": "1.3.3",
"superstruct": "0.15.3",
"trezor-connect": "8.2.2"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.13.8",
"@babel/plugin-proposal-optional-chaining": "7.13.12",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@ledgerhq/hw-transport-mocker": "6.20.0",
"@types/jest": "^26.0.22",
"@types/ledgerhq__hw-transport-u2f": "4.21.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.3.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"utility-types": "3.10.0"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
}
}