forked from trezor-graveyard/insight-api
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "insight-api",
"description": "A Ravencoin blockchain REST and web socket API service for Ravencore Node.",
"version": "1.0.3",
"repository": "git://github.com/underdarkskies/insight-api.git",
"contributors": [
{
"name": "Under",
"email": ""
}
],
"bugs": {
"url": "https://github.com/underdarkskies/insight-api/issues"
},
"homepage": "https://github.com/underdarkskies/insight-api",
"license": "MIT",
"keywords": [
"insight",
"insight api",
"blockchain",
"ravencoin api",
"blockchain api",
"json",
"ravencore"
],
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "NODE_ENV=test mocha -R spec --recursive"
},
"main": "lib",
"ravencoreNode": "lib",
"dependencies": {
"async": "2.6.2",
"bignumber.js": "4.1.0",
"body-parser": "1.18.3",
"compression": "1.7.4",
"lodash": "2.4.2",
"lru-cache": "4.1.5",
"mongoose": "5.1.7",
"morgan": "1.9.1",
"ravencore-lib": "underdarkskies/ravencore-lib",
"ravencore-message": "underdarkskies/ravencore-message",
"request": "2.88.0"
},
"peerDependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"proxyquire": "^1.7.2",
"should": "^8.3.1",
"sinon": "^1.10.3"
}
}