-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 823 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 823 Bytes
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
{
"name": "bitnodes",
"version": "0.0.1",
"description": "Bitnodes is currently being developed to estimate the size of the Bitcoin network by finding all the reachable nodes in the network.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"bitnodes": "./bin/bitnodes"
},
"keywords": [
"bitcoin",
"bitnodes",
"21co"
],
"author": "Erik Vold",
"homepage": "https://github.com/erikvold/node-bitnodes",
"repository": {
"type": "git",
"url": "git://github.com/erikvold/node-bitnodes.git"
},
"bugs": {
"url": "http://github.com/erikvold/node-bitnodes/issues"
},
"license": "MIT",
"dependencies": {
"commander": "^2.8.1",
"externalip": "^1.0.1",
"promise": "^7.0.4",
"request": "^2.64.0"
}
}