summaryrefslogtreecommitdiff
path: root/lib/epub.js/package.json
blob: 76b2d8c56e465403934ed552ae9c721b509af935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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"
  }
}