This repository has been archived by the owner on Oct 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.22 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
{
"name": "metronome-wallet-core",
"version": "3.0.0",
"description": "Core logic to develop an Ethereum Metronome wallet",
"keywords": [
"crypto",
"cryptocurrency",
"ethereum",
"metronome",
"wallet"
],
"license": "MIT",
"author": "Gabriel Montes <[email protected]>",
"files": [
"patches",
"src"
],
"main": "src/index.js",
"repository": "autonomoussoftware/metronome-wallet-core",
"scripts": {
"check:outdated": "npm-check -i eslint-config-plugin* -i husky",
"check": "dependency-check . --no-dev --ignore-module patch-package --ignore-module websocket-reconnector",
"coverage": "nyc --lines 95 --functions 95 --branches 95 --reporter=lcov --reporter=text npm test",
"lint": "eslint --cache .",
"prepare": "patch-package && husky install",
"prepublishOnly": "npm run lint && npm run check && npm test && tag-matches",
"test": "mocha"
},
"dependencies": {
"axios": "0.21.1",
"axios-cookiejar-support": "^1.0.1",
"debug": "^4.1.1",
"ethereumjs-wallet": "^1.0.1",
"lodash": "^4.17.15",
"merkletreejs": "0.0.25",
"metronome-contracts": "^2.5.0",
"metronome-sdk-status": "^1.2.1",
"p-all": "^3.0.0",
"p-retry": "^4.6.0",
"p-timeout": "^4.1.0",
"p-whilst": "^2.0.0",
"patch-package": "^5.1.1",
"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.3.6",
"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",
"proxyquire": "^2.1.3",
"randomstring": "^1.2.1"
},
"engines": {
"node": ">=12"
}
}