forked from pocesar/node-stratum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.02 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
{
"name": "stratum",
"version": "0.0.5",
"repository": {
"type": "git",
"url": "git://github.com/pocesar/node-stratum.git"
},
"license": "GPLv2",
"engines": {
"node": ">= 0.8.0"
},
"bin": {
"stratum-notify": "./bin/stratum-notify"
},
"main": "./lib",
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"description": "Stratum protocol server and client for node.js",
"keywords": [
"stratum",
"bitcoin",
"litecoin",
"ppcoin",
"altcoin",
"json-rpc",
"json-rpc2",
"rpc",
"daemon",
"server",
"protocol",
"tcp",
"socket"
],
"dependencies": {
"es5class": "*",
"commander": "*",
"colors": "*",
"json-rpc2": "*",
"debug": "*",
"toobusy": "~0.2.3",
"lodash": "*",
"q": "~0.9.6",
"uuid": "~1.4.1"
},
"devDependencies": {
"mocha": "*",
"jshint": "*",
"expect.js": "*",
"sinon": "~1.7.3",
"benchmark": "~1.0.0"
},
"scripts": {
"test": "jshint lib test && mocha test/tests.js"
}
}