This repository has been archived by the owner on Jun 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 3.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "enigma-p2p",
"version": "0.2.6",
"description": "Enigma P2P library based on libp2p-js ",
"main": "src/index.js",
"bin": {
"enigma-p2p-test": "./src/cli/cli_app.js"
},
"nyc": {
"temp-dir": "/tmp/enigma-p2p"
},
"scripts": {
"test": "find ./test -name '*_test.js' | npx nyc xargs env mocha --timeout 200000",
"truffle-develop": "cd ./test/ethereum/scripts && truffle develop",
"truffle-migrate-print-contract-address": "cd ./test/ethereum/scripts; truffle compile >/dev/null; truffle migrate --reset 2>/dev/null | grep -A 4 \"Replacing 'Enigma'\" | grep 'contract address' | awk '{print $NF}'",
"kill-truffle": "ps aux | grep truffle | grep -v grep | awk '{print $2}' | xargs kill -9 || true",
"compile-truffle": "cd test/ethereum/scripts && rm -rf build && truffle compile",
"report-coverage": "npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"start": "node src/cli/cli_app.js",
"test-tree": "node scripts/test_tree_validation.js"
},
"author": "isan rivkin",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/enigmampc/enigma-p2p.git"
},
"dependencies": {
"@nodeutils/defaults-deep": "^1.1.0",
"async": "^2.6.1",
"commander": "^2.18.0",
"config": "^3.1.0",
"cors": "^2.8.5",
"ethereumjs-abi": "^0.6.7",
"expect": "^24.1.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"jayson": "^3.0.1",
"jsbi": "^2.0.5",
"jsonschema": "^1.2.4",
"level": "^4.0.0",
"libp2p": "^0.23.0",
"libp2p-bootstrap": "^0.9.3",
"libp2p-kad-dht": "^0.15.4",
"libp2p-mdns": "^0.12.0",
"libp2p-mplex": "^0.8.0",
"libp2p-pnet": "^0.1.0",
"libp2p-secio": "^0.10.0",
"libp2p-spdy": "^0.12.1",
"libp2p-tcp": "^0.12.1",
"libp2p-websocket-star": "^0.10.0",
"libp2p-websockets": "^0.12.0",
"load-json-file": "^5.1.0",
"log": "^1.4.0",
"log4js": "^6.1.0",
"mocha": "^6.1.4",
"msgpack-lite": "^0.1.26",
"openzeppelin-solidity": "2.1",
"package.json": "^2.0.1",
"peer-info": "^0.14.1",
"pick-random": "^2.0.0",
"randomatic": "^3.1.0",
"readline": "^1.3.0",
"retry": "^0.12.0",
"rimraf": "^2.6.2",
"unix-timestamp": "^0.2.0",
"web3": "1.0.0-beta.37",
"web3-utils": "1.0.0-beta.37",
"zeromq": "^5.1.0",
"date-format": "^3.0.0"
},
"devDependencies": {
"axios": "^0.18.1",
"body-parser": "^1.18.3",
"capture-console": "^1.0.1",
"codecov": "^3.1.0",
"connect": "^3.6.6",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"tempdir": "^2.0.0",
"truffle": "^5.1.1",
"ws": "^7.0.0"
},
"contributors": [
"Isan Rivkin <[email protected]>",
"Lena Kleyner <[email protected]>",
"Elichai Turkel <[email protected]>",
"Avishai Weingarten <[email protected]>",
"Victor Grau Serrat <[email protected]>",
"Aditya Palepu <[email protected]>",
"Assaf Morami <[email protected]>"
]
}