-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (55 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (55 loc) · 2.82 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
{
"name": "distributed-index-p2p",
"version": "1.0.0",
"description": "Distributed Index P2P",
"main": "index.js",
"scripts": {
"start:registration-server": "node ./scenarios/registration-server.js",
"start:centralized:peer0": "node ./scenarios/centralized-file-distribution/peer0.js",
"start:centralized:peer1": "node ./scenarios/centralized-file-distribution/peer1.js",
"start:centralized:peer2": "node ./scenarios/centralized-file-distribution/peer2.js",
"start:centralized:peer3": "node ./scenarios/centralized-file-distribution/peer3.js",
"start:centralized:peer4": "node ./scenarios/centralized-file-distribution/peer4.js",
"start:centralized:peer5": "node ./scenarios/centralized-file-distribution/peer5.js",
"start:p2p:worst-case:peer0": "node ./scenarios/p2p-file-distribution/worst-case/peer0.js",
"start:p2p:worst-case:peer1": "node ./scenarios/p2p-file-distribution/worst-case/peer1.js",
"start:p2p:worst-case:peer2": "node ./scenarios/p2p-file-distribution/worst-case/peer2.js",
"start:p2p:worst-case:peer3": "node ./scenarios/p2p-file-distribution/worst-case/peer3.js",
"start:p2p:worst-case:peer4": "node ./scenarios/p2p-file-distribution/worst-case/peer4.js",
"start:p2p:worst-case:peer5": "node ./scenarios/p2p-file-distribution/worst-case/peer5.js",
"start:p2p:best-case:peer0": "node ./scenarios/p2p-file-distribution/best-case/peer0.js",
"start:p2p:best-case:peer1": "node ./scenarios/p2p-file-distribution/best-case/peer1.js",
"start:p2p:best-case:peer2": "node ./scenarios/p2p-file-distribution/best-case/peer2.js",
"start:p2p:best-case:peer3": "node ./scenarios/p2p-file-distribution/best-case/peer3.js",
"start:p2p:best-case:peer4": "node ./scenarios/p2p-file-distribution/best-case/peer4.js",
"start:p2p:best-case:peer5": "node ./scenarios/p2p-file-distribution/best-case/peer5.js",
"scenario:centralized": "node ./scenarios/centralized-file-distribution/centralized-file-distribution.js",
"scenario:p2p:worst-case": "node ./scenarios/p2p-file-distribution/worst-case/p2p-worst-case.js",
"scenario:p2p:best-case": "node ./scenarios/p2p-file-distribution/best-case/p2p-best-case.js",
"scenario:test": "node ./scenarios/testing-scenario/testing-scenario.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nephdog/DistributedIndexP2P.git"
},
"keywords": [
"P2P",
"Distributed",
"Index"
],
"author": "Nephi Grant",
"license": "ISC",
"bugs": {
"url": "https://github.com/nephdog/DistributedIndexP2P/issues"
},
"homepage": "https://github.com/nephdog/DistributedIndexP2P#readme",
"dependencies": {
"bluebird": "^3.5.1",
"chart-csv": "^1.0.3",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"restify": "^6.0.1",
"shelljs": "^0.7.8",
"uuid": "^3.1.0"
}
}