-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "safewallet",
"version": "0.1.1",
"description": "The world's first open-source crypto-currency bank.",
"main": "index.js",
"scripts": {
"test": "tap test"
},
"bin": {
"safe-deposits": "./bin/deposits",
"safe-front": "./bin/frontend",
"safe-withdrawals": "./bin/withdrawals"
},
"repository": {
"type": "git",
"url": "http://github.com/bigcompany/safewallet.git"
},
"license": "MIT",
"author": "Marak Squires <[email protected]>",
"devDependencies": {
"tap": "*",
"supertest": "*"
},
"dependencies": {
"bitcoin": "*",
"colors": "*",
"debug": "*",
"html-lang": "*",
"node-uuid": "~1.4.1",
"dateformat": "*",
"jugglingdb-nano": "https://github.com/jugglingdb/nano-adapter/tarball/master",
"optimist": "*",
"resource": "https://github.com/bigcompany/resource/tarball/master",
"resource-email": "https://github.com/bigcompany/email/tarball/master",
"resource-http": "https://github.com/bigcompany/http/tarball/master",
"resource-mesh": "https://github.com/bigcompany/mesh/tarball/master",
"resource-user": "https://github.com/bigcompany/user/tarball/master",
"resource-wallet": "https://github.com/bigcompany/resource-wallet/tarball/master",
"request": "*",
"view": "0.5.x",
"bignumber.js": "~1.3.0",
"qr-image": "1.1.x"
}
}