This repository has been archived by the owner on Jul 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.39 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
{
"name": "@dxos/signal",
"version": "1.0.3-alpha.0",
"description": "DxOS signal server.",
"homepage": "https://github.com/dxos/signal#readme",
"bugs": {
"url": "https://github.com/dxos/signal/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxos/signal.git"
},
"license": "AGPLv3",
"bin": {
"dxos-signal": "bin/signal.js",
"signal": "bin/signal.js"
},
"files": [
"bin",
"src",
"index.js"
],
"main": "index.js",
"scripts": {
"coverage": "npm test -- --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"lint": "semistandard '**/*.js'",
"lint:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts yarn npm codeload.github.com --validate-https",
"prepublishOnly": "npm run test",
"test": "DEBUG=\"dxos:test*\" jest --verbose --passWithNoTests",
"posttest": "npm run lint"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@azure/abort-controller": "^1.0.1",
"@dxos/broadcast": "^1.0.0-beta.10",
"@hyperswarm/dht": "^4.0.1",
"buffer-json-encoding": "^1.0.2",
"debug": "^4.1.1",
"end-of-stream": "^1.4.4",
"graphology": "^0.17.1",
"graphql": "^15.3.0",
"graphql-request": "^3.1.0",
"hypercore-crypto": "^2.1.1",
"hyperswarm": "^2.10.1",
"internal-ip": "^6.0.0",
"lodash.debounce": "^4.0.8",
"lodash.pick": "^4.4.0",
"moleculer": "^0.14.5",
"moleculer-apollo-server": "^0.3.3",
"moleculer-repl": "^0.6.3",
"moleculer-web": "^0.9.1",
"moment": "^2.29.0",
"monotonic-timestamp": "^0.0.9",
"nanomessage": "^8.2.0",
"nanoresource-promise": "^2.0.0",
"node-fetch": "^2.6.1",
"p-event": "^4.1.0",
"p-limit": "^3.0.2",
"public-ip": "^4.0.1",
"pump": "^3.0.0",
"simple-hypercore-protocol": "^2.1.0",
"simple-websocket": "^9.0.0",
"socket-signal": "^9.0.0",
"systeminformation": "^4.27.5",
"tiny-lru": "^7.0.6",
"varint": "^5.0.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@geut/discovery-swarm-webrtc": "^4.0.0",
"graphology-canvas": "^0.1.1",
"graphology-shortest-path": "^1.3.4",
"jest": "^26.4.2",
"lockfile-lint": "^4.3.7",
"semistandard": "^14.2.0",
"wrtc": "^0.4.6"
},
"publishConfig": {
"access": "public"
},
"semistandard": {
"env": [
"jest",
"node",
"browser"
]
}
}