-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "bitcore-spv",
"version": "0.0.1",
"description": "Javascript Bitcoin SPV node built on top of bitcore",
"main": "index.js",
"scripts": {
"test": "mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/throughnothing/bitcore-spv.git"
},
"keywords": [
"bitcoin",
"spv"
],
"author": "William Wolf <throughnothing@gmail.com> (http://blog.throughnothing.com)",
"license": "Public domain",
"bugs": {
"url": "https://github.com/throughnothing/bitcore-spv/issues"
},
"homepage": "https://github.com/throughnothing/bitcore-spv",
"dependencies": {
"bitcore": "^0.10.4",
"bitcore-p2p": "git://github.com/throughnothing/bitcore-p2p.git#4cad909a1f8902e8708825e75d1b6a4fc2243dcf",
"bitcore-mnemonic": "^0.10.0",
"bloom-filter": "^0.1.1"
},
"devDependencies": {
"chai": "^2.0.0",
"coveralls": "^2.11.2",
"mocha": "^2.1.0"
}
}