Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2020-05-10 20:34:08 +0300
committerGitHub <noreply@github.com>2020-05-10 20:34:08 +0300
commitdb9ec006c1faaa5758e7593216b6a31fb08ded26 (patch)
tree71a9d681767bee36aa5996915a32e67d93a96e9b /package.json
parent84ff227c4019cbc604ec9bf9aa491887f2bb9fc0 (diff)
parentdf896285fe2f75dea2f60e95326bb8a6f59371ab (diff)
Merge branch 'master' into chromeapp2
Diffstat (limited to 'package.json')
-rw-r--r--package.json28
1 files changed, 14 insertions, 14 deletions
diff --git a/package.json b/package.json
index f857ee7..23766d2 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "webtorrent",
"description": "Streaming torrent client",
- "version": "0.107.2",
+ "version": "0.108.1",
"author": {
"name": "WebTorrent, LLC",
"email": "feross@webtorrent.io",
@@ -41,16 +41,17 @@
"chunk-store-stream": "^4.0.0",
"create-torrent": "^4.0.0",
"debug": "^4.1.0",
- "end-of-stream": "^1.1.0",
+ "end-of-stream": "1.4.1",
+ "escape-html": "^1.0.3",
"fs-chunk-store": "^2.0.0",
- "http-node": "github:feross/http-node#cddd2872f0020ecf5016f326cf5e58c965eef52a",
+ "http-node": "github:feross/http-node#webtorrent",
"immediate-chunk-store": "^2.0.0",
"load-ip-set": "^2.1.0",
"memory-chunk-store": "^1.2.0",
"mime": "^2.4.0",
"multistream": "^4.0.0",
"package-json-versionify": "^1.0.2",
- "parse-numeric-range": "^0.0.2",
+ "parse-numeric-range": "^1.2.0",
"parse-torrent": "^7.0.0",
"pump": "^3.0.0",
"random-iterate": "^1.0.1",
@@ -63,31 +64,30 @@
"simple-concat": "^1.0.0",
"simple-get": "^3.0.1",
"simple-peer": "^9.0.0",
- "simple-sha1": "^2.0.8",
+ "simple-sha1": "^3.0.1",
"speedometer": "^1.0.0",
"stream-to-blob": "^2.0.0",
- "stream-to-blob-url": "^2.1.0",
+ "stream-to-blob-url": "^3.0.0",
"stream-with-known-length-to-buffer": "^1.0.0",
"torrent-discovery": "^9.1.1",
"torrent-piece": "^2.0.0",
- "uniq": "^1.0.1",
"unordered-array-remove": "^1.0.2",
"ut_metadata": "^3.3.0",
"ut_pex": "^2.0.0"
},
"devDependencies": {
- "airtap": "^2.0.3",
+ "airtap": "^3.0.0",
+ "babel-minify": "^0.5.1",
"bittorrent-tracker": "^9.14.0",
"browserify": "^16.5.0",
"disc": "^1.3.3",
- "electron": "^6.0.1",
+ "electron": "^8.0.0",
"finalhandler": "^1.0.0",
"network-address": "^1.1.0",
"run-series": "^1.1.4",
"serve-static": "^1.11.1",
"standard": "*",
- "tape": "^4.6.0",
- "tinyify": "^2.5.1",
+ "tape": "^5.0.0",
"webtorrent-fixtures": "^1.5.0"
},
"engines": {
@@ -118,13 +118,13 @@
},
"scripts": {
"build": "npm run build-js && npm run build-chromeapp",
- "build-chromeapp": "browserify --browser-field=chromeapp --standalone WebTorrent --plugin tinyify . > webtorrent.chromeapp.js",
+ "build-chromeapp": "browserify --browser-field=chromeapp --standalone WebTorrent . | minify --mangle=false > webtorrent.chromeapp.js",
"build-chromeapp-debug": "browserify --browser-field=chromeapp --standalone WebTorrent . > webtorrent.chromeapp.js",
- "build-js": "browserify --standalone WebTorrent --plugin tinyify . > webtorrent.min.js",
+ "build-js": "browserify --standalone WebTorrent . | minify --mangle=false > webtorrent.min.js",
"build-js-debug": "browserify --standalone WebTorrent . > webtorrent.debug.js",
"size": "npm run size-js && npm run size-disc",
"size-js": "npm run build && cat webtorrent.min.js | gzip | wc -c",
- "size-disc": "browserify --plugin tinyify --full-paths . | discify --open",
+ "size-disc": "browserify --full-paths . | discify --open",
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js test/browser/*.js",
"test-browser-local": "airtap --local -- test/*.js test/browser/*.js",