-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "alephium-mining-pool",
"version": "0.1.1",
"description": "Alephium mining pool in Node.js",
"keywords": [
"alephium",
"mining",
"pool"
],
"homepage": "https://github.com/alephium/mining-pool",
"bugs": {
"url": "https://github.com/alephium/mining-pool/issues"
},
"license": "GPL-2.0",
"author": "Matthew Little",
"contributors": [
"vekexasia",
"TheSeven"
],
"main": "./lib/init.js",
"scripts": {
"start": "node ./lib/init.js",
"test": "mocha --bail --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/alephium/mining-pool.git"
},
"dependencies": {
"base58-native": "*",
"bignum": "0.13.1",
"binary-parser": "2.0.2",
"blake3": "2.1.7",
"findhit-proxywrap": "^0.3.13",
"ioredis": "^4.28.2",
"pg": "^8.7.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"chai": "^4.3.4",
"ioredis-mock": "^5.8.1",
"mocha": "^9.1.3",
"nock": "^13.2.1"
}
}