-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.86 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.86 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
{
"name": "@tetherto/miningos-wrk-minerpool-f2pool",
"version": "0.0.1",
"description": "F2Pool miner pool worker",
"keywords": [
"tether"
],
"author": "Tether",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tetherto/miningos-wrk-minerpool-f2pool.git"
},
"homepage": "https://github.com/tetherto/miningos-wrk-minerpool-f2pool#readme",
"bugs": {
"url": "https://github.com/tetherto/miningos-wrk-minerpool-f2pool/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"worker.js",
"workers/",
"mock/"
],
"main": "worker.js",
"type": "commonjs",
"bin": {
"miningos-wrk-minerpool-f2pool": "worker.js"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:unit": "brittle tests/unit/*.js",
"test:integration": "NODE_ENV=test brittle ./tests/integration/f2pool.test.js",
"test:coverage": "brittle --coverage tests/**/*.test.js",
"dev": "node worker.js --wtype wrk-minerpool-rack-f2pool --env development --rack rack-1"
},
"dependencies": {
"@bitfinex/bfx-svc-boot-js": "1.2.0",
"@bitfinex/lib-js-util-base": "git+https://github.com/bitfinexcom/lib-js-util-base.git",
"@bitfinex/bfx-facs-http": "git+https://github.com/bitfinexcom/bfx-facs-http.git",
"@bitfinex/bfx-facs-scheduler": "git+https://github.com/bitfinexcom/bfx-facs-scheduler.git",
"mingo": "6.5.6",
"@tetherto/tether-wrk-base": "git+https://github.com/tetherto/tether-wrk-base.git#v1.0.0"
},
"devDependencies": {
"@fastify/secure-session": "8.3.0",
"brittle": "3.16.3",
"date-fns": "3.6.0",
"fastify": "5.8.5",
"@tetherto/miningos-mock-control-service": "git+https://github.com/tetherto/miningos-mock-control-service.git",
"standard": "17.1.2"
}
}