-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.97 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
{
"name": "@holo-host/envoy",
"version": "0.2.0",
"description": "Server that facilitates communication between hosted Agents and a Host's Holochain Conductor",
"main": "build/index.js",
"scripts": {
"install": "yarn run build",
"build": "tsc --AllowJs --outDir ./build -p ./src",
"test": "yarn run test-unit && yarn run test-integration",
"test-unit": "mocha ./tests/unit/",
"test-integration": "mocha ./tests/integration/",
"test-e2e": "NODE_ENV=test mocha ./tests/e2e",
"stop-conductor": "kill -9 $(ps aux | grep holochain | grep -v grep | awk '{print $2}') &",
"stop-hc": "kill -9 $(ps aux | grep hc | grep -v grep | awk '{print $2}') &"
},
"author": "Holo Ltd.",
"contributors": [
"Matthew Brisebois <matthew.brisebois@holo.host>",
"Robbie Carlton <robbie.carlton@holo.host>",
"Joel Ulahanna <joel.ulahanna@holo.host>",
"Lisa Jetton <lisa.jetton@holo.host>"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Holo-Host/holo-envoy/"
},
"dependencies": {
"@holo-host/cryptolib": "^0.3.0",
"@holo-host/data-translator": "^0.1.1",
"@holochain/conductor-api": "^0.2.1",
"@holochain/lair-client": "^0.1.2",
"@msgpack/msgpack": "^2.3.0",
"@types/ws": "^7.4.0",
"@whi/stdlog": "^0.3.3",
"concat-stream": "^2.0.0",
"json-stable-stringify": "^1.0.1",
"reconnecting-websocket": "^4.4.0",
"request": "^2.88.2",
"rpc-websockets": "^7.4.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@holo-host/chaperone": "^9.0.0",
"@holo-host/mock-conductor": "^0.3.3",
"@types/node": "^12.11.1",
"braintree-jsdoc-template": "^3.3.0",
"chai": "^4.2.0",
"chokidar-cli": "^2.0.0",
"fetch-mock": "^8.0.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.1",
"node-fetch": "^2.6.0",
"portscanner": "^2.2.0",
"puppeteer": "^2.1.1",
"superstruct": "^0.8.3",
"typescript": "^3.6.4",
"why-is-node-running": "^2.1.2",
"ws": "^7.4.3"
}
}