-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "kratum",
"version": "1.0.0",
"description": "A Kadena-compatible Stratum server for pooled cryptomining.",
"keywords": [
"kadena",
"stratum",
"server",
"pooled",
"cryptomining"
],
"author": "Brian Kennish <brian@joinmassive.com>",
"license": "GPL-3.0",
"main": "init.js",
"scripts": {
"start": "pm2 start init.js --name stratum -l stratum.log",
"stop": "pm2 stop stratum",
"restart": "npm stop && npm start",
"test": "echo \"Error: No test specified\" && exit 1"
},
"dependencies": {
"async": "^3.2.5",
"base58-native": "^0.1.4",
"blake2": "^5.0.0",
"chalk": "^5.3.0",
"config": "^3.3.10",
"multi-hashing": "^1.0.2",
"node-appwrite": "^11.1.0",
"node-json-minify": "^3.0.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"pm2": "^5.3.1",
"posix": "^4.2.0",
"req-fast": "^0.2.21",
"request": "^2.88.2"
},
"engines": {
"node": "^12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nopool/kratum"
}
}