-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 993 Bytes
/
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
{
"name": "consensus-bench",
"version": "1.0.0",
"description": "Benchmark framework for consensus protocol such as BA or blockchain",
"main": "simulator.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --max-old-space-size=8192 simulator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CheshireCatNick/consensus-bench.git"
},
"keywords": [
"blockchain",
"consensus",
"Byzantine",
"agreement"
],
"author": "Nicky",
"license": "ISC",
"bugs": {
"url": "https://github.com/CheshireCatNick/consensus-bench/issues"
},
"homepage": "https://github.com/CheshireCatNick/consensus-bench#readme",
"dependencies": {
"cli-color": "^1.3.0",
"cli-progress": "^3.8.2",
"clui": "^0.3.6",
"colors": "^1.4.0",
"fastpriorityqueue": "^0.6.1",
"mathjs": "^10.0.0",
"moment": "^2.22.2",
"npm": "^6.14.15",
"sleep": "^6.2.0",
"uuid": "^3.3.2"
}
}