-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.36 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.36 KB
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
{
"name": "@lumerin/wallet-core",
"version": "1.1.5",
"author": {
"name": "Lumerin",
"email": "developer@lumerin.io",
"url": "https://lumerin.io"
},
"description": "Core logic to develop a Lumerin wallet",
"keywords": [
"crypto",
"cryptocurrency",
"ethereum",
"lumerin",
"wallet"
],
"license": "MIT",
"files": [
"patches",
"src"
],
"main": "src/index.js",
"repository": "https://github.com/lumerin-protocol/WalletCore",
"scripts": {
"check": "dependency-check . --no-dev --ignore-module patch-package --ignore-module websocket-reconnector",
"lint": "",
"prepare": "patch-package && husky install",
"prepublishOnly": "npm run check",
"kill-proxy": "kill-port 3333 && kill-port 3334"
},
"dependencies": {
"@azure/abort-controller": "^1.1.0",
"@mhoc/axios-digest-auth": "^0.8.0",
"@dopex-io/web3-multicall": "^0.1.10",
"abi-decoder": "^2.4.0",
"axios": "0.21.1",
"axios-cookiejar-support": "1.0.1",
"bottleneck": "^2.19.5",
"chalk": "^2.4.2",
"contracts-js": "github:Lumerin-protocol/contracts-js#v1.2.1",
"cross-port-killer": "^1.4.0",
"debug": "4.1.1",
"ecies-geth": "^1.7.0",
"electron-log": "^4.4.8",
"ethereumjs-wallet": "1.0.1",
"ip": "^1.1.8",
"json-stringify-safe": "^5.0.1",
"lodash": "4.17.15",
"p-all": "3.0.0",
"p-retry": "4.6.0",
"p-timeout": "4.1.0",
"p-whilst": "2.0.0",
"promise-all-props": "1.0.1",
"safe-exchange-rate": "1.0.0",
"socket.io-client": "2.1.1",
"tough-cookie": "2.5.0",
"web3": "^1.8.1",
"websocket-reconnector": "1.1.1"
},
"devDependencies": {
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"check-tag-matches": "1.0.0",
"dependency-check": "4.1.0",
"eslint": "7.29.0",
"eslint-config-bloq": "2.4.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsdoc": "35.4.1",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-require-path-exists": "1.1.9",
"husky": "6.0.0",
"mocha": "9.0.1",
"nock": "13.0.2",
"npm-check": "5.9.2",
"nyc": "15.1.0",
"patch-package": "5.1.1",
"proxyquire": "2.1.3",
"randomstring": "1.2.1"
},
"engines": {
"node": ">=12"
}
}