forked from futurepress/epub.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.33 KB
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
{
"name": "epubjs",
"version": "0.4.0",
"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 --mode development",
"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": "fchasen@gmail.com",
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-export-default-from": "^7.27.1",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/preset-env": "^7.29.0",
"@babel/runtime": "^7.28.6",
"babel-loader": "^10.1.1",
"documentation": "^14.0.3",
"eslint": "^8.0.1",
"jsdoc": "^4.0.5",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"mocha": "^11.3.0",
"raw-loader": "^4.0.2",
"terser-webpack-plugin": "^5.4.0",
"tsd-jsdoc": "^2.5.0",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.5",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@types/localforage": "0.0.34",
"@xmldom/xmldom": "^0.8.11",
"core-js": "^3.48.0",
"event-emitter": "^0.3.5",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"lodash": "^4.17.23",
"marks-pane": "^1.0.9",
"path-webpack": "0.0.3"
}
}