-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 951 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
41
42
43
44
45
46
47
48
49
{
"name": "cbe",
"description": "CLAM block explorer",
"homepage": "https://github.com/daxxog/cbe",
"main": "cbe.min.js",
"version": "0.0.1",
"engines": {
"node": ">=0.10.33"
},
"maintainers": [
{
"name": "David Volm",
"email": "david@volminator.com",
"web": "http://daxxog.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/daxxog/cbe.git"
},
"devDependencies": {
"bitfactory": "*",
"stoptime": "*",
"uglify-js": "*",
"vows": "*"
},
"scripts": {
"build": "node make.js",
"test": "vows test/*",
"start": "node cli.js",
"prepublish": "npm run build"
},
"files": [
"cli.min.js",
"cbe.min.js",
"bin/cbe"
],
"bin": {
"cbe": "bin/cbe"
},
"dependencies": {
"async": "^1.4.0",
"clamcoin": "^1.4.11",
"express": "^4.13.1",
"hiredis": "^0.4.0",
"mongodb": "^2.0.40",
"redis": "^0.12.1"
}
}