-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1005 Bytes
/
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": "hstratum",
"version": "0.1.0",
"description": "Stratum Server for HSD as a plugin",
"keywords": [
"hsd",
"handshake",
"blockchain",
"mining",
"miner",
"stratum"
],
"license": "MIT",
"repository": "git://github.com/HandshakeAlliance/hstratum.git",
"homepage": "https://github.com/HandshakeAlliance/hstratum",
"bugs": {
"url": "https://github.com/HandshakeAlliance/hstratum/issues"
},
"author": "Handshake Alliance",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint lib/ || exit 0",
"test": "bmocha --reporter spec test/*-test.js"
},
"dependencies": {
"bcrypto": "~5.2.0",
"bfile": "^0.1.4",
"binet": "~0.3.4",
"blgr": "^0.1.5",
"blst": "~0.1.4",
"bmutex": "^0.1.5",
"bn.js": "^4.11.8",
"bsert": "0.0.8",
"btcp": "~0.1.4",
"buffer-map": "~0.0.5",
"hsd": "github:handshake-org/hsd"
},
"devDependencies": {
"bmocha": "^1.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}