-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 1.21 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
{
"name": "webpagetoepub",
"version": "1.0.0",
"description": "Convert any webpage to an EPUB file",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"concat-css": "cleancss -o css/style.min.css css/normalize.min.css css/milligram.min.css css/main.css",
"concat-js": "concat-cli -f js/jszip.min.js js/ejs.min.js js/main.js -o js/script.min.js",
"minify-html": "html-minifier-terser --collapse-whitespace --remove-comments --remove-comments --remove-redundant-attributes --remove-script-type-attributes index.src.html -o index.html",
"generate-pwa": "workbox generateSW workbox-config.js",
"build": "run-s concat-css concat-js minify-html generate-pwa"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpagetoepub/webpagetoepub.github.io.git"
},
"author": "Carlson Santana Cruz",
"license": "MIT",
"bugs": {
"url": "https://github.com/webpagetoepub/webpagetoepub.github.io/issues"
},
"homepage": "https://github.com/webpagetoepub/webpagetoepub.github.io#readme",
"devDependencies": {
"clean-css-cli": "^5.6.3",
"concat-cli": "^4.0.0",
"html-minifier-terser": "^7.2.0",
"npm-run-all": "^4.1.5",
"workbox-cli": "^7.1.0"
}
}