-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "hs-miner",
"version": "0.0.10",
"description": "Handshake CUDA miner",
"keywords": [
"crypto",
"hash",
"siphash"
],
"license": "MIT",
"repository": "git://github.com/handshake-org/hs-miner.git",
"homepage": "https://github.com/handshake-org/hs-miner",
"bugs": {
"url": "https://github.com/handshake-org/hs-miner/issues"
},
"author": "Christopher Jeffrey <[email protected]>",
"main": "./lib/hs-miner.js",
"bin": {
"hs-miner": "./bin/hs-miner",
"hs-mine": "./bin/hs-mine"
},
"scripts": {
"install": "./scripts/rebuild main",
"install-main": "./scripts/rebuild main",
"install-testnet": "./scripts/rebuild testnet",
"install-regtest": "./scripts/rebuild regtest",
"install-simnet": "./scripts/rebuild simnet",
"bench": "./bin/hs-bench",
"clean": "./scripts/clean",
"lint": "eslint bin/* lib/*.js test/*.js || exit 0",
"test": "bmocha --reporter spec test/*-test.js"
},
"dependencies": {
"bsert": "~0.0.10",
"loady": "~0.0.1",
"nan": "^2.14.0"
},
"devDependencies": {
"bmocha": "^2.1.3"
},
"optionalDependencies": {
"bcfg": "~0.1.6",
"brq": "~0.1.8"
},
"engines": {
"node": ">=8.0.0"
},
"gypfile": true
}