forked from bitpay/insight-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.6 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
{
"name": "insight-api",
"description": "A Bitcoin blockchain REST and web socket API service for Bitcore Node.",
"version": "0.3.1",
"repository": "git://github.com/bitpay/insight-api.git",
"contributors": [
{
"name": "Gustavo Cortez",
"email": "cmgustavo83@gmail.com"
},
{
"name": "Ivan Socolsky",
"email": "jungans@gmail.com"
},
{
"name": "Juan Ignacio Sosa Lopez",
"email": "bechilandia@gmail.com"
},
{
"name": "Manuel Araoz",
"email": "manuelaraoz@gmail.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
},
{
"name": "Mario Colque",
"email": "colquemario@gmail.com"
},
{
"name": "Patrick Nagurny",
"email": "patrick@bitpay.com"
},
{
"name": "Braydon Fuller",
"email": "braydon@bitpay.com"
}
],
"bugs": {
"url": "https://github.com/bitpay/insight-api/issues"
},
"homepage": "https://github.com/bitpay/insight-api",
"license": "MIT",
"keywords": [
"insight",
"insight api",
"blockchain",
"bitcoin 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-message": "^1.0.1",
"lodash": "^2.4.1",
"request": "^2.64.0"
},
"devDependencies": {
"chai": "*",
"mocha": "~1.16.2",
"proxyquire": "^1.7.2",
"should": "^2.1.1",
"sinon": "^1.10.3"
}
}