forked from tlrobinson/node-cgminer
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.63 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.63 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
{
"name": "cgminer",
"version": "0.1.3",
"description": "API client for CGMiner Bitcoin miner",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minera/node-cgminer.git"
},
"keywords": [
"bitcoin",
"cgminer",
"bfgminer",
"client",
"promises",
"promises/a",
"promises/a+",
"q"
],
"author": {
"name": "Michele Marcucci"
},
"license": "BSD",
"dependencies": {
"q": "~0.9.6"
},
"readme": "node-cgminer\n============\n\nUsage\n-----\n\nCGMiner command return a Promises/A compatible promise (specifically a [Q](https://github.com/kriskowal/q) promise):\n\n var client = new CGMinerClient(HOST, PORT);\n client.COMMAND(ARG1, ARG2).then(function(results) {\n console.log(results);\n }, function(err) {\n // error handler\n });\n\nCOMMAND corresponds to one of the commands detailed in [CGMiner's API documentation](https://github.com/ckolivas/cgminer/blob/master/API-README).\n\nTODO\n----\n\n* Some commands return the raw JSON response object while other return a customized object (`devs`, etc).\n* Documentation.",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/minera/node-cgminer/issues"
},
"_id": "cgminer@0.1.3",
"_from": "cgminer@latest",
"_npmVersion": "1.2.25",
"_npmUser": {
"name": "minera",
"email": "support@minera.com"
},
"maintainers": [
{
"name": "minera",
"email": "support@minera.com"
}
],
"directories": {},
"homepage": "https://github.com/minera/node-cgminer#readme"
}