forked from Snipa22/nodejs-pool
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.84 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.84 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
{
"name": "nodejs-pool",
"version": "0.0.1",
"description": "MoneroOcean multi-coin mining pool backend with automatic algo switching support",
"private": true,
"main": "init.js",
"homepage": "https://github.com/MoneroOcean/nodejs-pool#readme",
"bugs": {
"url": "https://github.com/MoneroOcean/nodejs-pool/issues"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --require ./tests/common/test_output_buffer.js --test --test-reporter=./tests/common/spec_reporter.js --test-concurrency=1 tests/all.js",
"test:deploy": "node --require ./tests/common/test_output_buffer.js --test --test-reporter=./tests/common/spec_reporter.js --test-concurrency=1 tests/deploy.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",
"test:live:jp": "NODEJS_POOL_LIVE_TARGET_HOST=jp.moneroocean.stream 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": "https://github.com/MoneroOcean/nodejs-pool.git"
},
"author": "MoneroOcean contributors",
"license": "MIT",
"keywords": [
"monero",
"moneroocean",
"mining",
"mining-pool",
"stratum",
"pool-backend",
"nodejs",
"node",
"lmdb",
"mysql",
"randomx",
"cryptonight"
],
"dependencies": {
"crypto-js": "4.2.0",
"debug": "2.6.9",
"express": "4.22.1",
"jsonwebtoken": "9.0.3",
"node-lmdb": "0.10.1",
"node-blocktemplate": "git+https://github.com/MoneroOcean/node-blocktemplate.git#v15.8.16",
"node-powhash": "git+https://github.com/MoneroOcean/node-powhash.git#v29.1.8",
"promise-mysql": "3.0.0",
"protocol-buffers": "5.0.0",
"utf8": "3.0.0"
}
}