forked from WaveringAna/equihash-solomining
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "equihash-solomining",
"version": "0.0.1",
"description": "High performance Stratum poolserver in Node.js",
"keywords": [
"stratum",
"mining",
"pool",
"server",
"poolserver",
"bitcoin",
"litecoin",
"scrypt"
],
"homepage": "https://github.com/zzzpotato/equihash-solomining",
"bugs": {
"url": "https://github.com/zzzpotato/equihash-solomining"
},
"license": "GPL-2.0",
"author": "Matthew Little",
"contributors": [
"vekexasia",
"TheSeven",
"Potato"
],
"main": "init.js",
"repository": {
"type": "git",
"url": "git+https://github.com/joshuayabut/node-stratum-pool.git"
},
"dependencies": {
"async": "*",
"base58-native": "*",
"bignum": "*",
"body-parser": "^1.17.1",
"color": "^1.0.3",
"colors": "^1.1.2",
"dot": "^1.1.1",
"express": "^4.15.2",
"express-dot-engine": "^1.0.7",
"promise": "*",
"stratum-pool": "git+https://github.com/s-nomp/node-stratum-pool.git"
},
"engines": {
"node": ">=7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/node_modules/stratum-pool/node_modules/equihashverify/build/Release/:$PWD/node_modules/equihashverify/build/Release/ node init.js"
}
}