generated from blinkhash/foundation-v2-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "foundation-v2-raptoreum",
"version": "0.0.22",
"description": "A high performance Stratum pool-server written in Node.js",
"main": "./exports.js",
"keywords": [
"bitcoin",
"stratum",
"mining",
"pool"
],
"homepage": "https://github.com/blinkhash/foundation-v2-raptoreum",
"bugs": {
"url": "https://github.com/blinkhash/foundation-v2-raptoreum/issues"
},
"license": "GPL-3.0",
"author": {
"name": "Nick Sarris"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"configs/",
".mock.js"
]
},
"scripts": {
"start": "nodemon ./index.js",
"prod:start": "pm2 start ./index.js",
"prod:stop": "pm2 stop ./index.js",
"prod:logs": "pm2 logs main",
"prod:update": "pm2 update",
"clean": "eslint . --ext .js --ignore-pattern node_modules/",
"clean:fix": "eslint . --ext .js --fix --ignore-pattern node_modules/",
"test": "jest --coverage",
"deploy": "npm install && npm run clean:fix && npm run test"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/blinkhash/foundation-v2-raptoreum.git"
},
"dependencies": {
"async": "^3.2.3",
"bchaddrjs": "^0.5.2",
"bech32": "0.0.3",
"bindings": "^1.3.0",
"blake2b": "^2.1.4",
"bs58check": "^2.1.2",
"colors": "^1.4.0",
"libsodium": "^0.7.3",
"merkle-lib": "^2.0.10",
"nan": "^2.15.0",
"node-gyp": "^9.0.0",
"nodemon": "^2.0.19",
"pm2": "^5.2.0",
"sha3": "2.1.4",
"uuid": "^8.3.2",
"zeromq": "^5.2.8"
},
"devDependencies": {
"codecov": "^3.8.1",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"mockdate": "^3.0.5",
"nock": "^13.2.4"
},
"engines": {
"node": ">=12.16"
},
"readmeFilename": "README.md"
}