-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
91 lines (91 loc) · 3.16 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
82
83
84
85
86
87
88
89
90
91
{
"name": "bibi",
"version": "1.2.0",
"author": {
"name": "Satoru Matsushima"
},
"description": "Bibi | EPUB Reader on your website.",
"keywords": [
"EPUB",
"Reading System",
"Viewer",
"Books-in-Browsers"
],
"license": "MIT",
"homepage": "https://bibi.epub.link",
"repository": {
"type": "git",
"url": "git://github.com/satorumurmur/bibi.git"
},
"bugs": "https://github.com/satorumurmur/bibi/issues",
"readmeFilename": "README.md",
"scripts": {
"develop": "gulp reset && webpack --progress --mode development",
"develop+watch": "gulp reset && webpack --progress --mode development --watch",
"develop+bc": "gulp reset --bc && webpack --progress --mode development --bc",
"develop+bc+watch": "gulp reset --bc && webpack --progress --mode development --bc --watch",
"build": "gulp reset && webpack --progress --mode production",
"build+watch": "gulp reset && webpack --progress --mode production --watch",
"build+bc": "gulp reset --bc && webpack --progress --mode production --bc",
"build+bc+watch": "gulp reset --bc && webpack --progress --mode production --bc --watch",
"build+pack": "gulp reset --pack && webpack --progress --mode production --pack",
"make:dress-template": "gulp make:dress-template",
"make:package": "npm run build+pack && gulp make:package && gulp clean --pack",
"make:package+bc": "npm run build+pack && gulp make:package && gulp make:package --bc && gulp clean --pack",
"serve": "browser-sync start --config bs-config.js",
"demo": "npm run build+bc && npm run serve",
"start": "npm run develop+watch",
"postinstall": ""
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"autoprefixer": "^9.8.4",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"file-loader": "^6.0.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-zip": "^5.0.2",
"hard-source-webpack-plugin": "^0.13.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.36",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^9.0.1",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.6",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-fix-style-only-entries": "^0.5.1"
},
"dependencies": {
"bibi-zip-loader": "^0.9.0",
"classlist-polyfill": "^1.2.0",
"current-script-polyfill": "^1.0.0",
"custom-event-polyfill": "^1.0.7",
"dompurify": "^2.0.17",
"es6-object-assign": "^1.1.0",
"intersection-observer": "^0.11.0",
"js-yaml": "^3.14.0",
"jszip": "^3.5.0",
"jszip-utils": "0.1.0",
"material-icons": "^0.3.1",
"native-promise-only": "^0.8.1",
"polyfill-array-includes": "^2.0.0",
"sml.js": "^1.0.28",
"string.padstart": "^0.1.1",
"text-encoding-utf-8": "^1.0.2",
"url-polyfill": "^1.1.9"
}
}