-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 loc) · 858 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "stratum-client",
"version": "1.1.0",
"description": "A NodeJS based stratum client for communication with stratum pool",
"main": "index.js",
"scripts": {
"test": "mocha --recursive test",
"bump-version": "npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnabk/stratum-client.git"
},
"keywords": [
"nodejs",
"stratum",
"mining"
],
"author": "Arnab Karmakar",
"contributors": {
"name": "KorkyMonster",
"url": "http://github.com/KorkyMonster"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/arnabk/stratum-client/issues"
},
"homepage": "https://github.com/arnabk/stratum-client#readme",
"devDependencies": {
"mocha": "^4.0.1"
},
"dependencies": {
"lodash": "^4.17.11"
},
"engines": {
"node": "~v9.0.0"
}
}