-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "qtum-insight-api",
"description": "A QTUM blockchain REST and web socket API service for Qtumcore Node.",
"version": "0.0.26",
"repository": "https://github.com/qtumproject/insight-api.git",
"contributors": [],
"bugs": {
"url": "https://github.com/qtumproject/insight-api/issues"
},
"homepage": "https://github.com/qtumproject/insight-api",
"license": "MIT",
"keywords": [
"insight",
"insight api",
"blockchain",
"qtum api",
"blockchain api",
"json",
"qtumcore"
],
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "NODE_ENV=test mocha -R spec --recursive"
},
"main": "lib",
"qtumcoreNode": "lib",
"dependencies": {
"async": "*",
"bignumber.js": "^4.0.2",
"bitcore-lib": "^0.13.7",
"bitcore-message": "^1.0.1",
"body-parser": "^1.13.3",
"compression": "^1.6.1",
"cors": "^2.8.5",
"lodash": "^2.4.1",
"lru-cache": "^4.0.1",
"moment": "^2.19.3",
"mongoose": "^4.11.8",
"morgan": "^1.7.0",
"qtumcore-lib": "https://github.com/qtumproject/qtumcore-lib.git#master",
"request": "^2.83.0",
"web3": "^0.18.4"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"proxyquire": "^1.7.2",
"should": "^8.3.1",
"sinon": "^1.10.3"
}
}