summaryrefslogtreecommitdiff
path: root/lib/epub.js/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'lib/epub.js/package.json')
-rw-r--r--lib/epub.js/package.json68
1 files changed, 68 insertions, 0 deletions
diff --git a/lib/epub.js/package.json b/lib/epub.js/package.json
new file mode 100644
index 0000000..76b2d8c
--- /dev/null
+++ b/lib/epub.js/package.json
@@ -0,0 +1,68 @@
+{
+ "name": "epubjs",
+ "version": "0.3.88",
+ "description": "Parse and Render Epubs",
+ "main": "lib/index.js",
+ "module": "src/index.js",
+ "types": "types/index.d.ts",
+ "repository": "https://github.com/futurepress/epub.js",
+ "directories": {
+ "test": "test"
+ },
+ "scripts": {
+ "test": "karma start --single-run --browsers ChromeHeadlessNoSandbox",
+ "docs": "documentation build src/epub.js -f html -o documentation/html/",
+ "docs:html": "documentation build src/epub.js -f html -o documentation/html/",
+ "docs:md": "documentation build src/epub.js -f md -o documentation/md/API.md",
+ "lint": "eslint -c .eslintrc.js src; exit 0",
+ "start": "webpack-dev-server --inline --d",
+ "build": "NODE_ENV=production webpack --progress",
+ "minify": "NODE_ENV=production MINIMIZE=true webpack --progress",
+ "legacy": "NODE_ENV=production LEGACY=true webpack --progress",
+ "productionLegacy": "NODE_ENV=production MINIMIZE=true LEGACY=true webpack --progress",
+ "compile": "babel -d lib/ src/",
+ "watch": "babel --watch -d lib/ src/",
+ "prepare": "npm run compile && npm run build && npm run minify && npm run legacy && npm run productionLegacy"
+ },
+ "author": "[email protected]",
+ "license": "BSD-2-Clause",
+ "devDependencies": {
+ "@babel/cli": "^7.10.1",
+ "@babel/core": "^7.10.2",
+ "@babel/plugin-proposal-export-default-from": "^7.10.1",
+ "@babel/plugin-proposal-export-namespace-from": "^7.10.1",
+ "@babel/preset-env": "^7.10.2",
+ "@babel/runtime": "^7.10.2",
+ "babel-loader": "^8.1.0",
+ "documentation": "^13.0.1",
+ "eslint": "^7.1.0",
+ "jsdoc": "^3.6.4",
+ "karma": "^5.0.9",
+ "karma-chrome-launcher": "^3.1.0",
+ "karma-mocha": "^2.0.1",
+ "karma-mocha-reporter": "^2.2.5",
+ "karma-phantomjs-launcher": "^1.0.4",
+ "karma-sourcemap-loader": "^0.3.7",
+ "karma-webpack": "next",
+ "mocha": "^7.2.0",
+ "mocha-loader": "^5.0.0",
+ "raw-loader": "^4.0.1",
+ "terser-webpack-plugin": "^3.0.3",
+ "tsd-jsdoc": "^2.5.0",
+ "webpack": "^4.43.0",
+ "webpack-cli": "^3.3.11",
+ "webpack-dev-middleware": "^3.7.2",
+ "webpack-dev-server": "^3.11.0"
+ },
+ "dependencies": {
+ "@types/localforage": "0.0.34",
+ "core-js": "^3.6.5",
+ "event-emitter": "^0.3.5",
+ "jszip": "^3.4.0",
+ "localforage": "^1.7.3",
+ "lodash": "^4.17.15",
+ "marks-pane": "^1.0.9",
+ "path-webpack": "0.0.3",
+ "xmldom": "^0.3.0"
+ }
+}