-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.03 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
51
{
"name": "node-p2pool",
"version": "0.1.0",
"description": "p2pool in nodejs",
"main": "src/index.js",
"scripts": {
"test": "gulp dev"
},
"repository": {
"type": "git",
"url": "https://github.com/drazisil/node-p2pool.git"
},
"keywords": [
"p2pool",
"bitcoin",
"mining"
],
"author": [{
"name": "Joseph W Becher (drazisil)",
"email": "jwbecher@drazisil.com",
"url": "http://code.drazisil.com/"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/drazisil/node-p2pool/issues"
},
"devDependencies": {
"coveralls": "^2.11.4",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.0",
"gulp-mocha": "^2.1.3",
"gulp-standard": "^5.2.2",
"mocha": "^2.3.3",
"mocha-standard": "^1.0.0",
"nock": "^2.15.0",
"should": "^7.1.0",
"standard": "^5.3.1"
},
"standard": {
"globals": [
"describe",
"it",
"before"
]
},
"dependencies": {
"node-bitcoin-rpc": "^1.1.0"
}
}