forked from koinos/koinos-miner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 893 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
{
"name": "koinos-miner",
"version": "1.0.0",
"description": "Mining application used to mint the KOIN ERC-20.",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "rm -rf build && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=.. -DCMAKE_BUILD_TYPE=Release .. && cmake --build . --target install --config Release && cd .. && rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-orchard/koinos-miner.git"
},
"keywords": [],
"author": "OpenOrchard, Inc.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/open-orchard/koinos-miner/issues"
},
"homepage": "https://github.com/open-orchard/koinos-miner#readme",
"dependencies": {
"commander": "^6.0.0",
"readline-sync": "^1.4.10",
"web3": "^1.2.11"
}
}