forked from cryptocoin-builders/foundation-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.6 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "foundation-template",
"version": "0.0.1",
"description": "An extremely efficient, highly scalable, all-in-one, easy to setup cryptocurrency mining pool",
"main": "./scripts/init.js",
"keywords": [
"stratum",
"mining",
"pool",
"server",
"poolserver",
"bitcoin",
"litecoin",
"scrypt"
],
"homepage": "https://github.com/blinkhash/foundation-server",
"bugs": {
"url": "https://github.com/blinkhash/foundation-server/issues"
},
"license": "GPL-2.0",
"author": {
"name": "Nick Sarris"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"configs/",
".mock.js"
]
},
"scripts": {
"start": "nodemon scripts/main.js",
"clean": "eslint . --ext .js --ignore-pattern node_modules/",
"clean:fix": "eslint . --ext .js --fix --ignore-pattern node_modules/",
"test": "jest --coverage"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/blinkhash/foundation-server.git"
},
"dependencies": {
"apicache": "^1.5.3",
"async": "2.6.3",
"bignum": "0.13.1",
"foundation-stratum": "0.0.8",
"body-parser": "*",
"colors": "*",
"compression": "*",
"cors": "^2.8.5",
"dateformat": "4.5.1",
"express": "*",
"express-rate-limit": "^5.3.0",
"nodemon": "2.0.9",
"redis": "^3.1.1"
},
"devDependencies": {
"codecov": "^3.8.1",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"nock": "^13.0.10",
"redis-mock": "^0.56.3"
},
"engines": {
"node": ">=12.16"
},
"readmeFilename": "README.md"
}