-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
82 lines (82 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "insight-api-zcoin",
"description": "A Zcoin blockchain REST and web socket API service for Bitcore Node.",
"version": "0.4.5",
"repository": "git://github.com/sn-ntu/insight-api-zcoin.git",
"contributors": [
{
"name": "Gustavo Cortez",
"email": "[email protected]"
},
{
"name": "Ivan Socolsky",
"email": "[email protected]"
},
{
"name": "Juan Ignacio Sosa Lopez",
"email": "[email protected]"
},
{
"name": "Manuel Araoz",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
},
{
"name": "Mario Colque",
"email": "[email protected]"
},
{
"name": "Patrick Nagurny",
"email": "[email protected]"
},
{
"name": "Braydon Fuller",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/technoprenerd/insight-api-zcoin/issues"
},
"homepage": "https://github.com/technoprenerd/insight-api-zcoin",
"license": "MIT",
"keywords": [
"insight",
"insight api",
"blockchain",
"zcoin api",
"blockchain api",
"json",
"bitcore",
"zcoin api",
"bitcore-node-zcoin"
],
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "NODE_ENV=test mocha -R spec --recursive"
},
"main": "lib",
"bitcoreNode": "lib",
"dependencies": {
"async": "*",
"bitcore-lib-zcoin": "git://github.com/sn-ntu/bitcore-lib-zcoin.git",
"bitcore-message-zcoin": "git://github.com/sn-ntu/bitcore-message-zcoin.git",
"body-parser": "^1.13.3",
"compression": "^1.6.1",
"lodash": "^2.4.1",
"lru-cache": "^4.0.1",
"morgan": "^1.7.0",
"request": "^2.64.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"proxyquire": "^1.7.2",
"should": "^8.3.1",
"sinon": "^1.10.3"
}
}