@libp2p/tcp 6.0.2 → 6.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
# @libp2p/tcp <!-- omit in toc -->
|
|
2
2
|
|
|
3
3
|
[](http://libp2p.io/)
|
|
4
|
-
[](http://webchat.freenode.net/?channels=%23libp2p)
|
|
5
4
|
[](https://discuss.libp2p.io)
|
|
6
5
|
[](https://codecov.io/gh/libp2p/js-libp2p-tcp)
|
|
7
|
-
[](https://github.com/libp2p/js-libp2p-tcp/actions/workflows/js-test-and-release.yml)
|
|
8
7
|
|
|
9
8
|
> Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces
|
|
10
9
|
|
|
@@ -18,7 +17,7 @@
|
|
|
18
17
|
- [Contribute](#contribute)
|
|
19
18
|
- [Contribute](#contribute-1)
|
|
20
19
|
- [License](#license)
|
|
21
|
-
- [
|
|
20
|
+
- [Contribute](#contribute-2)
|
|
22
21
|
|
|
23
22
|
## Install
|
|
24
23
|
|
|
@@ -126,6 +125,6 @@ Licensed under either of
|
|
|
126
125
|
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
|
|
127
126
|
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
|
|
128
127
|
|
|
129
|
-
##
|
|
128
|
+
## Contribute
|
|
130
129
|
|
|
131
130
|
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/tcp",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.3",
|
|
4
4
|
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p-tcp#readme",
|
|
@@ -71,15 +71,15 @@
|
|
|
71
71
|
"release": "patch"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
"type": "
|
|
74
|
+
"type": "docs",
|
|
75
75
|
"release": "patch"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
"type": "
|
|
78
|
+
"type": "test",
|
|
79
79
|
"release": "patch"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
"type": "
|
|
82
|
+
"type": "deps",
|
|
83
83
|
"release": "patch"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
@@ -109,7 +109,11 @@
|
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"type": "docs",
|
|
112
|
-
"section": "
|
|
112
|
+
"section": "Documentation"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"type": "deps",
|
|
116
|
+
"section": "Dependencies"
|
|
113
117
|
},
|
|
114
118
|
{
|
|
115
119
|
"type": "test",
|
|
@@ -137,6 +141,7 @@
|
|
|
137
141
|
},
|
|
138
142
|
"dependencies": {
|
|
139
143
|
"@libp2p/interface-connection": "^3.0.2",
|
|
144
|
+
"@libp2p/interface-metrics": "^4.0.0",
|
|
140
145
|
"@libp2p/interface-transport": "^2.0.0",
|
|
141
146
|
"@libp2p/interfaces": "^3.0.3",
|
|
142
147
|
"@libp2p/logger": "^2.0.0",
|
|
@@ -148,7 +153,6 @@
|
|
|
148
153
|
"stream-to-it": "^0.2.2"
|
|
149
154
|
},
|
|
150
155
|
"devDependencies": {
|
|
151
|
-
"@libp2p/interface-metrics": "^4.0.0",
|
|
152
156
|
"@libp2p/interface-mocks": "^8.0.1",
|
|
153
157
|
"@libp2p/interface-transport-compliance-tests": "^3.0.0",
|
|
154
158
|
"aegir": "^37.5.3",
|