-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
40 lines (40 loc) · 1014 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": "pennybank",
"version": "0.0.1",
"description": "Penny Bank - Distributed Bitcoin Microtransactions",
"dependencies": {
"bcoin": "^0.14.4",
"bignum": "^0.9.2",
"bitcore": "git://github.com/quartzjer/bitcore.git",
"bitcore-explorers": "^0.10.4",
"browserify-bignum": "^1.3.0-2",
"minimist": "^1.1.1"
},
"devDependencies": {
"chai": "*",
"mocha": "*"
},
"browser": {
"bignum": "browserify-bignum"
},
"scripts": {
"test": "make test",
"calculator": "browserify difficulty.js > browser_difficulty.js",
"set": "browserify set.js > browser_set.js"
},
"repository": {
"type": "git",
"url": "https://github.com/quartzjer/pennybank.git"
},
"keywords": [
"bitcoin",
"microtransaction",
"penny bank"
],
"author": "Jeremie Miller <jeremie@jabber.org>",
"license": "Public Domain",
"bugs": {
"url": "https://github.com/quartzjer/pennybank/issues"
},
"homepage": "https://github.com/quartzjer/pennybank"
}