-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "foundation-stratum",
"version": "0.0.42",
"description": "High performance Stratum poolserver in Node.js",
"main": "./scripts/main.js",
"keywords": [
"stratum",
"mining",
"pool",
"server",
"poolserver",
"bitcoin",
"litecoin",
"scrypt"
],
"homepage": "https://github.com/blinkhash/foundation-stratum",
"bugs": {
"url": "https://github.com/blinkhash/foundation-stratum/issues"
},
"license": "GPL-2.0",
"author": {
"name": "Nick Sarris"
},
"jest": {
"collectCoverage": true,
"verbose": true
},
"scripts": {
"clean": "eslint . --ext .js --ignore-pattern node_modules/",
"clean:fix": "eslint . --ext .js --fix --ignore-pattern node_modules/",
"test": "jest --coverage",
"deploy": "npm run clean:fix && npm run test"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/blinkhash/foundation-stratum.git"
},
"dependencies": {
"async": "3.2.2",
"bchaddrjs": "^0.5.2",
"bignum": "0.13.1",
"foundation-multi-hashing": "0.1.3",
"foundation-utxo-lib": "0.0.4",
"sha3": "2.1.4"
},
"devDependencies": {
"codecov": "^3.8.1",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"mockdate": "^3.0.5",
"nock": "^13.0.10"
},
"engines": {
"node": ">=12.16"
},
"readmeFilename": "README.md"
}