forked from intity/epub-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "epub-js",
"version": "0.3.93",
"description": "Parse and Render Epubs",
"main": "lib/index.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/intity/epub-js.git"
},
"bugs": {
"url": "https://github.com/intity/epub-js/issues"
},
"directories": {
"test": "test"
},
"scripts": {
"docs": "node docsgen.js",
"lint": "eslint src",
"start": "NODE_ENV=development webpack serve",
"build": "NODE_ENV=production webpack --progress",
"minify": "NODE_ENV=production MINIMIZE=true webpack --progress",
"compile": "babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"prepare": "npm run compile && npm run build && npm run minify"
},
"author": "fchasen@gmail.com",
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-export-default-from": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.25.4",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.9.1",
"jsdoc": "^4.0.3",
"jsdoc-to-markdown": "^8.0.3",
"mocha": "^10.7.3",
"process": "^0.11.10",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.4.2",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"assert": "^2.1.0",
"core-js": "^3.38.1",
"event-emitter": "^0.3.5",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"lodash": "^4.17.21"
}
}