-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.32 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ssb-minimal-pub-server",
"description": "network protocol layer for secure-scuttlebutt",
"version": "15.1.0",
"homepage": "https://github.com/ssbc/ssb-minimal-pub-server",
"repository": {
"type": "git",
"url": "git://github.com/ssbc/ssb-minimal-pub-server.git"
},
"bin": {
"sbot": "./bin.js",
"ssb-server": "./bin.js"
},
"scripts": {
"start": "node bin start",
"prepublishOnly": "npm test",
"test": "set -e; for t in test/*.js; do echo TEST $t; node $t; done && compatibility",
"reinstall": "rm -rf node_modules package-lock.json npm-shrinkwrap.json; export npm_config_package_lock=true; npm install && npm dedupe && npm shrinkwrap",
"coverage": "nyc --reporter=lcov npm test"
},
"dependencies": {
"bash-color": "~0.0.3",
"broadcast-stream": "^0.2.1",
"cont": "~1.0.3",
"cross-spawn": "^6.0.5",
"debug": "^4.1.1",
"deep-equal": "^1.0.1",
"explain-error": "^1.0.3",
"has-network": "0.0.1",
"ip": "^1.1.5",
"minimist": "^1.1.3",
"mkdirp": "~0.5.0",
"multiblob": "^1.13.0",
"multiserver": "^3.5.0",
"multiserver-address": "^1.0.1",
"muxrpc-validation": "^3.0.2",
"muxrpcli": "^3.1.1",
"mv": "^2.1.1",
"osenv": "^0.1.5",
"pull-cat": "~1.1.5",
"pull-file": "^1.0.0",
"pull-many": "~1.0.6",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.13",
"rimraf": "^2.4.2",
"secret-stack": "^6.2.1",
"ssb-blobs": "1.2.2",
"ssb-caps": "1.0.1",
"ssb-client": "^4.7.7",
"ssb-config": "^3.3.1",
"ssb-db": "19.2.0",
"ssb-device-address": "^1.1.6",
"ssb-ebt": "^5.6.7",
"ssb-friends": "^4.1.4",
"ssb-legacy-conn": "^1.0.25",
"ssb-identities": "^2.1.0",
"ssb-invite": "^2.1.2",
"ssb-keys": "^7.1.7",
"ssb-local": "^1.0.0",
"ssb-logging": "^1.0.0",
"ssb-master": "^1.0.3",
"ssb-no-auth": "^1.0.0",
"ssb-onion": "^1.0.0",
"ssb-ooo": "^1.3.0",
"ssb-peer-invites": "^2.0.0",
"ssb-plugins": "^1.0.2",
"ssb-query": "^2.4.2",
"ssb-ref": "^2.13.9",
"ssb-replicate": "^1.3.0",
"ssb-unix-socket": "^1.0.0",
"ssb-ws": "^6.2.3",
"stream-to-pull-stream": "^1.6.10",
"zerr": "^1.0.0"
},
"devDependencies": {
"@types/node": "^11.13.4",
"cat-names": "^3.0.0",
"compatibility": "^1.0.1",
"dog-names": "^2.0.0",
"hexpp": "^2.0.0",
"interleavings": "^1.0.0",
"npm-install-package": "^2.1.0",
"nyc": "^13.2.0",
"pull-abortable": "^4.1.1",
"pull-bitflipper": "^0.1.1",
"pull-paramap": "^1.2.2",
"rng": "^0.2.2",
"run-series": "^1.1.8",
"semver": "^5.6.0",
"ssb-feed": "^2.3.0",
"ssb-generate": "^1.0.1",
"ssb-gossip": "^1.1.0",
"ssb-validate": "^4",
"tape": "^4.9.1",
"typescript": "^3.3.4000",
"typewiselite": "^1.0.0"
},
"nyc": {
"exclude": [
"!**/node_modules/",
"**/node_modules/**/{test,node_modules}/"
],
"include": [
"*.js",
"lib/*.js",
"plugins/*.js",
"node_modules/{ssb-*,flume*,secret-stack,muxrpc,multiserver}/*.js",
"node_modules/{ssb-*,flume*,secret-stack,muxrpc,multiserver}/{util,lib,frame,indexes}/*.js"
]
},
"compatibility": [
"ssb-friends",
"ssb-blobs",
"ssb-ebt",
"ssb-db",
"ssb-ooo",
"ssb-plugins"
],
"author": "Paul Frazee <pfrazee@gmail.com>",
"license": "MIT"
}