forked from lelinhtinh/jEpub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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": "jepub",
"version": "2.1.4",
"description": "Generate simple EPUB books with JavaScript.",
"main": "src/jepub.js",
"scripts": {
"clean": "rimraf dist",
"postclean": "mkdirp dist",
"prebuild": "npm run clean",
"build": "webpack --config webpack.development.config.js",
"postbuild": "webpack --config webpack.production.config.js",
"prestart": "npm run clean",
"start": "webpack --config webpack.development.config.js --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lelinhtinh/jEpub.git"
},
"keywords": [
"generator",
"epub",
"javascript",
"browser",
"library"
],
"author": "lelinhtinh",
"license": "ISC",
"files": [
"demo/",
"dist/",
"src/"
],
"bugs": {
"url": "https://github.com/lelinhtinh/jEpub/issues"
},
"homepage": "https://lelinhtinh.github.io/jEpub/",
"dependencies": {
"ejs": "^2.7.4",
"image-type": "^4.1.0",
"jszip": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/runtime": "^7.10.3",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"mkdirp": "^0.5.5",
"raw-loader": "^0.5.1",
"rimraf": "^2.7.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}