-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "mbdownloader",
"description": "MB (MyBook) Downloader is a small JS framework which contains all functionality to scrapping chapters from story/novel on the Internet and generate the downloaded content into ePub format.",
"version": "0.2.4",
"license": "MIT",
"author": "Toan Nguyen",
"main": "src/mbDownloader.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",
"uglify": "uglifyjs src/mbDownloader.js -o dist/mbDownloader.min.js -c -m"
},
"repository": {
"type": "git",
"url": "https://github.com/nntoan/mbDownloader"
},
"keywords": [
"scrapper",
"javascript",
"browser",
"library"
],
"bugs": {
"url": "https://github.com/nntoan/mbDownloader/issues"
},
"homepage": "https://github.com/nntoan/mbDownloader#readme",
"dependencies": {
"jquery": ">=1.8.0",
"jquery-ui": "^1.11.0",
"jepub": "^2.1.1",
"file-saver": "^2.0.2",
"jszip": "^3.2.1",
"ejs": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^0.2.1",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"uglifyjs": "^2.4.11",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}