Compare commits

..

9 Commits

Author SHA1 Message Date
Feross Aboukhadijeh
d7613c3ac1 3.5.2 2020-11-05 11:17:57 -10:00
Feross Aboukhadijeh
953df40533
Merge pull request #47 from webtorrent/bitfield 2020-11-05 22:16:35 +01:00
Feross Aboukhadijeh
adf80f9e31 bitfield@4 2020-11-03 09:36:31 -10:00
Feross Aboukhadijeh
a19b83ad6d bump deps 2020-11-03 09:31:23 -10:00
Feross Aboukhadijeh
18c33fa5f7 package metadata 2020-07-16 21:49:31 -07:00
Feross Aboukhadijeh
eeeebdda22 3.5.1 2020-07-16 21:49:30 -07:00
Feross Aboukhadijeh
4f99851a9e deps 2020-07-16 21:49:16 -07:00
Feross Aboukhadijeh
c89df72e4e
Merge pull request #46 from webtorrent/greenkeeper/tape-5.0.0
Update tape to the latest version 🚀
2020-07-17 06:47:15 +02:00
greenkeeper[bot]
5bdc9df4f7
chore(package): update tape to version 5.0.0 2020-04-24 22:04:03 +00:00
2 changed files with 27 additions and 12 deletions

View File

@ -1,6 +1,7 @@
/*! ut_metadata. MIT License. WebTorrent LLC <https://webtorrent.io/opensource> */
const { EventEmitter } = require('events')
const bencode = require('bencode')
const BitField = require('bitfield')
const BitField = require('bitfield').default
const debug = require('debug')('ut_metadata')
const sha1 = require('simple-sha1')

View File

@ -1,9 +1,9 @@
{
"name": "ut_metadata",
"description": "Extension for Peers to Send Metadata Files (BEP 9)",
"version": "3.5.0",
"version": "3.5.2",
"author": {
"name": "WebTorrent, LLC",
"name": "WebTorrent LLC",
"email": "feross@webtorrent.io",
"url": "https://webtorrent.io"
},
@ -11,17 +11,17 @@
"url": "https://github.com/webtorrent/ut_metadata/issues"
},
"dependencies": {
"bencode": "^2.0.0",
"bitfield": "^3.0.0",
"debug": "^4.0.0",
"simple-sha1": "^3.0.0"
"bencode": "^2.0.1",
"bitfield": "^4.0.0",
"debug": "^4.2.0",
"simple-sha1": "^3.0.1"
},
"devDependencies": {
"bittorrent-protocol": "^3.0.0",
"brfs": "^2.0.0",
"bittorrent-protocol": "^3.1.2",
"brfs": "^2.0.2",
"standard": "*",
"tape": "^4.0.0",
"webtorrent-fixtures": "^1.3.0"
"tape": "^5.0.1",
"webtorrent-fixtures": "^1.7.3"
},
"keywords": [
"Extension for Peers to Send Metadata Files",
@ -42,5 +42,19 @@
},
"scripts": {
"test": "standard && tape test/*.js"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}