forked from johanpoirier/epub-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 908 Bytes
/
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
{
"name": "epub-toolkit",
"version": "0.0.12",
"description": "JS modules to explore epub files",
"main": "lib/epub-toolkit.js",
"scripts": {
"build": "webpack",
"prepublish": "npm run build"
},
"keywords": [
"epub",
"js",
"module"
],
"author": "Johan Poirier <[email protected]> (https://twitter.com/johanpoirier)",
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs3": "^7.9.2",
"cheerio": "^1.0.0-rc.2",
"core-js": "^3.6.5",
"jszip": "^3.1.5",
"mime-types": "^2.1.27",
"node-fetch": "^2.2.0",
"node-forge": "^0.9.1",
"pako": "^1.0.11",
"rsvp": "^4.8.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.12"
}
}