-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "multiserver",
"description": "write a server which works over many protocols at once, or connect to the same",
"version": "3.8.2",
"homepage": "https://github.com/ssb-js/multiserver",
"repository": {
"type": "git",
"url": "git://github.com/ssb-js/multiserver.git"
},
"files": [
"*.js",
"plugins/*.js"
],
"dependencies": {
"debug": "^4.1.1",
"multicb": "^1.2.2",
"multiserver-scopes": "^2.0.0",
"pull-stream": "^3.6.1",
"pull-websocket": "^3.4.0",
"secret-handshake": "^1.1.16",
"separator-escape": "0.0.1",
"socks": "^2.2.3",
"stream-to-pull-stream": "^1.7.2"
},
"devDependencies": {
"chloride": "^2.2.8",
"prettier": "^2.5.1",
"pull-pushable": "^2.2.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
},
"scripts": {
"test": "tape test/*.js | tap-spec",
"format-code": "prettier --write \"*.js\" \"(test|plugins)/*.js\""
},
"engines": {
"node": ">=12"
},
"browser": {
"ws": false,
"pull-ws/server": false,
"socks": false
},
"author": "'Dominic Tarr' <[email protected]> (dominictarr.com)",
"license": "MIT"
}