forked from UniversalViewer/epub.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.57 KB
/
package.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "epubjs",
"version": "0.3.85",
"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": "npx karma start --single-run --browsers ChromeHeadlessNoSandbox",
"documentation": "./node_modules/.bin/gulp docs",
"lint": "./node_modules/.bin/eslint -c .eslintrc.js src; exit 0",
"start": "./node_modules/.bin/webpack-dev-server --inline --d",
"build": "npx webpack --progress",
"minify": "SET NODE_ENV=production && npm run build",
"legacy": "SET LEGACY=true && npm run build",
"productionLegacy": "SET NODE_ENV=production && SET LEGACY=true npm run build",
"compile": "npx babel -d lib/ src/",
"watch": "npx babel --watch --optional runtime -d lib/ src/",
"serve": "npx gulp serve",
"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.24.1",
"@babel/core": "^7.24.3",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "7.24.3",
"babel-loader": "^9.1.3",
"colors": "^1.3.0",
"connect": "^3.6.6",
"documentation": "^14.0.3",
"eslint": "^4.19.1",
"express": "^4.19.2",
"gulp": "^4.0.2",
"gulp-connect": "^5.7.0",
"gulp-documentation": "^3.2.1",
"gulp-jshint": "^2.1.0",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.3.0",
"gulp-size": "^2.1.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"jsdoc": "^3.6.3",
"jshint": "^2.13.6",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.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": "^5.0.1",
"mocha": "^10.3.0",
"morgan": "^1.10.0",
"portfinder": "^1.0.13",
"raw-loader": "^0.5.1",
"serve-static": "^1.13.2",
"tsd-jsdoc": "^2.5.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.1.1"
},
"dependencies": {
"@types/jszip": "^3.1.4",
"@xmldom/xmldom": "^0.8.10",
"assert": "^2.1.0",
"event-emitter": "^0.3.5",
"jszip": "^3.10.1",
"localforage": "^1.7.2",
"lodash": "^4.17.21",
"marks-pane": "^1.0.9",
"path-webpack": "0.0.3",
"stream-browserify": "^2.0.1",
"url-polyfill": "^1.1.3"
}
}