forked from Snipa22/xmr-node-proxy
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.64 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": "xmr-node-proxy",
"version": "0.29.10",
"description": "MoneroOcean-compatible XMR-style mining proxy for nodejs-pool with algo switching support",
"main": "proxy.js",
"bin": {
"xmr-node-proxy": "./proxy.js"
},
"scripts": {
"start": "node proxy.js",
"start:standalone": "node proxy.js --standalone",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node --require ./tests/common/test_output_buffer.js --test --test-reporter=./tests/common/spec_reporter.js --test-concurrency=1 tests/balance.js tests/cluster.js tests/common.js tests/monitor.js tests/pool.js tests/proxy.js tests/xmr.js",
"test:live": "node --require ./tests/common/test_output_buffer.js --test --test-reporter=./tests/common/spec_reporter.js --test-concurrency=1 tests/live.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoneroOcean/xmr-node-proxy.git"
},
"keywords": [
"mining-proxy",
"monero",
"moneroocean",
"cryptonote",
"forknote",
"stratum",
"json-rpc",
"randomx",
"mining-pool",
"proxy",
"xmr"
],
"author": "MoneroOcean contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/MoneroOcean/xmr-node-proxy/issues"
},
"homepage": "https://github.com/MoneroOcean/xmr-node-proxy#readme",
"engines": {
"node": ">=22.9.0",
"npm": ">=11.10.0"
},
"os": [
"linux",
"darwin"
],
"dependencies": {
"node-blocktemplate": "github:MoneroOcean/node-blocktemplate#v15.8.21",
"node-powhash": "github:MoneroOcean/node-powhash#v29.2.6"
},
"devDependencies": {
"eslint": "^9.39.4",
"globals": "^17.6.0"
}
}