forked from pocesar/node-stratum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.44 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
58
59
60
61
62
63
64
65
66
{
"name": "stratum",
"version": "0.2.4",
"repository": {
"type": "git",
"url": "git://github.com/pocesar/node-stratum.git"
},
"license": "GPLv2",
"engines": {
"node": "0.10.x"
},
"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",
"jsonrpc2",
"jsonrpc",
"cryptocoin",
"rpc",
"daemon",
"server",
"protocol",
"tcp",
"socket"
],
"dependencies": {
"es5class": "1.x.x",
"commander": "*",
"chalk": "*",
"json-rpc2": "1.x",
"debug": "*",
"toobusy-js": "*",
"lodash": "3.x",
"bluebird": "2.x",
"uuid": "*",
"eventemitter3": "1.x",
"better-curry": "*"
},
"devDependencies": {
"mocha": "*",
"jshint": "*",
"expect.js": "*",
"sinon": "*",
"istanbul": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*"
},
"scripts": {
"test": "jshint lib test && mocha",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --report lcovonly && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
}
}