1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-03 14:59:18 +02:00

Update dependencies

This commit is contained in:
Fred Chasen 2021-10-21 11:43:54 -07:00
parent f7c179ad7b
commit 819d3c3380
3 changed files with 8464 additions and 5543 deletions

View file

@ -88,7 +88,7 @@
<li><a href="swipe.html">Swipe</a><p> <li><a href="swipe.html">Swipe</a><p>
This example includes a function in the script to link "swipe" events on touchscreens, particularly mobile devices, to navigate forward and back. Note that swipes do not work in Chrome Desktop even if you turn on device emulation in the "inspect" toolbar. </p></li> This example includes a function in the script to link "swipe" events on touchscreens, particularly mobile devices, to navigate forward and back. Note that swipes do not work in Chrome Desktop even if you turn on device emulation in the "inspect" toolbar. </p></li>
<li><a href="input.html">Open from File</a><p> <li><a href="input.html">Open from File</a><p>
Allows you to select an epub file from your local computer that gets rendered in the browser. As of 5/14/2019 only the cover renders.</p></li> Allows you to select an epub file from your local computer that gets rendered in the browser.</p></li>
<li><a href="renderless.html">Renderless</a><p> <li><a href="renderless.html">Renderless</a><p>
The name for this example is misleading since the book certainly does render. What's unique in this example is that the book's table of contents is read in and a list of sections in developed, then each section is rendered as it is called for by a section.render() call, but there's no master book.renderTo() call. Functionlly this seems exactly the same as 1) and 3).</p></li> The name for this example is misleading since the book certainly does render. What's unique in this example is that the book's table of contents is read in and a list of sections in developed, then each section is rendered as it is called for by a section.render() call, but there's no master book.renderTo() call. Functionlly this seems exactly the same as 1) and 3).</p></li>
<li><a href="hooks.html">Hooks</a><p> <li><a href="hooks.html">Hooks</a><p>

13973
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -27,26 +27,26 @@
"author": "fchasen@gmail.com", "author": "fchasen@gmail.com",
"license": "BSD-2-Clause", "license": "BSD-2-Clause",
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.10.1", "@babel/cli": "^7.15.7",
"@babel/core": "^7.10.2", "@babel/core": "^7.15.8",
"@babel/plugin-proposal-export-default-from": "^7.10.1", "@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1", "@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/preset-env": "^7.10.2", "@babel/preset-env": "^7.15.8",
"@babel/runtime": "^7.10.2", "@babel/runtime": "^7.15.4",
"babel-loader": "^8.1.0", "babel-loader": "^8.2.3",
"documentation": "^13.0.1", "documentation": "^13.2.5",
"eslint": "^7.1.0", "eslint": "^8.0.1",
"jsdoc": "^3.6.4", "jsdoc": "^3.6.7",
"karma": "^5.0.9", "karma": "^5.0.9",
"karma-chrome-launcher": "^3.1.0", "karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1", "karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5", "karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4", "karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7", "karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "next", "karma-webpack": "^4.0.2",
"mocha": "^7.2.0", "mocha": "^7.2.0",
"mocha-loader": "^5.0.0", "mocha-loader": "^5.0.0",
"raw-loader": "^4.0.1", "raw-loader": "^4.0.2",
"terser-webpack-plugin": "^3.0.3", "terser-webpack-plugin": "^3.0.3",
"tsd-jsdoc": "^2.5.0", "tsd-jsdoc": "^2.5.0",
"webpack": "^4.43.0", "webpack": "^4.43.0",
@ -57,11 +57,11 @@
"dependencies": { "dependencies": {
"@types/localforage": "0.0.34", "@types/localforage": "0.0.34",
"@xmldom/xmldom": "^0.7.5", "@xmldom/xmldom": "^0.7.5",
"core-js": "^3.6.5", "core-js": "^3.18.3",
"event-emitter": "^0.3.5", "event-emitter": "^0.3.5",
"jszip": "^3.4.0", "jszip": "^3.7.1",
"localforage": "^1.7.3", "localforage": "^1.10.0",
"lodash": "^4.17.15", "lodash": "^4.17.21",
"marks-pane": "^1.0.9", "marks-pane": "^1.0.9",
"path-webpack": "0.0.3" "path-webpack": "0.0.3"
} }