-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
92 lines (92 loc) · 3.26 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
{
"name": "@hathor/wallet-lib",
"version": "2.0.1",
"description": "Library used by Hathor Wallet",
"main": "lib/index.js",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"directories": {
"lib": "lib"
},
"files": [
"/lib"
],
"dependencies": {
"abstract-level": "1.0.4",
"axios": "1.7.7",
"bitcore-lib": "8.25.10",
"bitcore-mnemonic": "8.25.10",
"buffer": "6.0.3",
"crypto-js": "4.2.0",
"isomorphic-ws": "5.0.0",
"level": "8.0.1",
"level-transcoder": "1.0.1",
"lodash": "4.17.21",
"queue-microtask": "1.2.3",
"ws": "8.17.1",
"zod": "3.23.8"
},
"scripts": {
"test": "jest --env=node --forceExit",
"test:watch": "jest --watch --env=node",
"build": "babel -d lib --extensions \".ts,.js\" src && tsc",
"tsc": "tsc",
"test_integration": "npm run test_network_up && npm run test_network_integration && npm run test_network_down",
"test_network_up": "docker compose -f ./__tests__/integration/configuration/docker-compose.yml up -d && mkdir -p tmp && cp ./__tests__/integration/configuration/precalculated-wallets.json ./tmp/wallets.json",
"test_network_integration": "jest --config jest-integration.config.js --runInBand --forceExit",
"test_network_partial_down": "docker compose -f ./__tests__/integration/configuration/docker-compose.yml -p configuration stop cpuminer",
"test_network_down": "docker compose -f ./__tests__/integration/configuration/docker-compose.yml down && rm ./tmp/wallets.json",
"lint": "eslint 'src/**/*.{js,ts}' '__tests__/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' '__tests__/**/*.{js,ts}' --fix",
"format": "prettier --write 'src/**/*.{js,ts}' '__tests__/**/*.{js,ts}'",
"format:check": "prettier --check 'src/**/*.{js,ts}' '__tests__/**/*.{js,ts}'"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.24.7",
"@babel/core": "7.24.7",
"@babel/eslint-parser": "7.24.7",
"@babel/node": "7.24.7",
"@babel/plugin-transform-async-generator-functions": "7.24.7",
"@babel/plugin-transform-class-properties": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@types/crypto-js": "4.2.2",
"@types/jest": "29.5.12",
"@types/level": "6.0.3",
"@types/lodash": "4.17.5",
"@types/node": "20.14.2",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"axios-mock-adapter": "1.22.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"jest-html-reporter": "3.10.2",
"jest-localstorage-mock": "2.4.26",
"mock-socket": "9.3.1",
"prettier": "3.3.2",
"typescript": "5.4.5"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/HathorNetwork/hathor-wallet-lib.git"
},
"keywords": [
"hathor",
"wallet"
],
"author": "Hathor Labs",
"bugs": {
"url": "https://github.com/HathorNetwork/hathor-wallet-lib/issues"
},
"homepage": "https://github.com/HathorNetwork/hathor-wallet-lib#readme"
}