forked from bitpay/insight-api
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 1.87 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
83
84
85
{
"name": "insight-api",
"description": "A Umbra blockchain REST and web socket API service for Bitcore Node.",
"version": "0.4.3",
"repository": "git://github.com/shadowproject/insight-api.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]"
},
{
"name": "Ryno Mathee",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/shadowproject/insight-api/issues"
},
"homepage": "https://github.com/shadowproject/insight-api",
"license": "MIT",
"keywords": [
"insight",
"insight api",
"blockchain",
"umbra api",
"blockchain api",
"json",
"bitcore"
],
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "NODE_ENV=test mocha -R spec --recursive"
},
"main": "lib",
"bitcoreNode": "lib",
"dependencies": {
"async": "*",
//"bitcore-lib": "^0.13.7",
"bitcore-lib": "git://github.com/shadowProject/bitcore-lib.git",
"bitcore-message": "^1.0.1",
"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"
}
}