-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
40 lines (40 loc) · 857 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
39
40
{
"name": "bitcoin",
"description": "Communicate with bitcoind via JSON-RPC",
"version": "3.0.3",
"main": "lib/index.js",
"keywords": [
"bitcoin",
"rpc"
],
"author": "William Casarin <[email protected]>",
"contributors": [
"Sean Lavine <[email protected]>"
],
"dependencies": {},
"devDependencies": {
"clone": "^1.0.2",
"mocha": "^2.3.3",
"standard": "^5.3.1"
},
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/jb55/node-bitcoin.git"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"pretest": "standard --verbose",
"test": "make test"
},
"bugs": {
"url": "https://github.com/jb55/node-bitcoin/issues"
},
"homepage": "https://github.com/jb55/node-bitcoin",
"directories": {
"test": "test"
},
"license": "Unlicense"
}