-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
48 lines (48 loc) · 1.14 KB
/
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
41
42
43
44
45
46
47
48
{
"name": "webcoin",
"version": "3.1.0",
"description": "Bitcoin client for Node.js and the browser",
"main": "index.js",
"dependencies": {
"bitcoin-filter": "^0.2.0",
"bitcoin-inventory": "^1.2.2",
"bitcoin-merkle-proof": "^0.1.0",
"bitcoin-net": "^5.2.0",
"bitcoinjs-lib": "^4.0.3",
"blockchain-download": "^2.1.2",
"blockchain-spv": "^3.3.0",
"old": "^0.1.3",
"webcoin-bitcoin": "^3.1.5",
"webcoin-bitcoin-testnet": "^1.1.2"
},
"devDependencies": {
"faucet": "0.0.1",
"nyc": "^8.1.0",
"standard": "^12.0.1",
"tape": "^4.6.0"
},
"scripts": {
"test": "standard index.js src/*.js && nyc tape test/*.js | faucet && nyc report",
"test-browser": "./test/browser.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mappum/webcoin.git"
},
"keywords": [
"webcoin",
"bitcoin",
"spv",
"client",
"webrtc",
"p2p",
"network",
"coins"
],
"author": "Matt Bell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mappum/webcoin/issues"
},
"homepage": "https://github.com/mappum/webcoin#readme"
}