forked from pembo210/Litesight-api
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.91 KB
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
{
"name": "marssight-api",
"description": "An open-source Marscoin blockchain API. The Marssight API provides you with a convenient, powerful and simple way to query and broadcast data on the Marscoin network and build your own services with it.",
"version": "1.0.0",
"author": {
"name": "Marscoin Foundation",
"email": "info@marscoin.org"
},
"repository": {
"type": "git",
"url": "git://github.com/marscoin/Marssight-api.git"
},
"contributors": [
{
"name": "Marscoin Foundation"
},
{
"name": "Ryan X Charles",
"email": "ryan@bitpay.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
}
],
"bugs": {
"url": "https://github.com/marscoin/Marssight-api/issues"
},
"homepage": "https://github.com/marscoin/Marssight-api",
"license": "MIT",
"keywords": [
"marssight",
"marscoin",
"insight api",
"blockchain",
"blockchain api",
"cryptocurrency",
"mars"
],
"engines": {
"node": ">=24.0.0"
},
"bin": "insight.js",
"scripts": {
"start": "node insight.js",
"test": "mocha --timeout 10000 test/test.*.js",
"test:pure": "mocha --timeout 10000 test/test.*.pure.js test/test.base58.js test/test.bufferUtils.js test/test.leveldb.js test/test.microtime.js"
},
"dependencies": {
"async": "^3.2.5",
"bitauth": "^0.1.1",
"bufferput": "^0.1.3",
"classic-level": "^3.0.0",
"commander": "^2.20.3",
"connect-ratelimit": "^0.0.7",
"cron": "^3.1.7",
"express": "^4.21.0",
"glob": "^10.4.5",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"nodemailer": "^6.9.15",
"preconditions": "^2.2.4",
"request": "^2.88.2",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"soop": "^0.1.5",
"winston": "^3.14.2"
},
"devDependencies": {
"chai": "^4.5.0",
"mocha": "^10.7.3",
"sinon": "^18.0.1"
}
}