-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "Downloader",
"version": "1.2.1",
"description": "A simple software to download what you want from any URL (direct link, mega.nz and maybe more...) on a locked network.\r You'll have to setup Downloader on your **own server**.",
"main": "index.js",
"dependencies": {
"bootstrap": "^4.0.0-alpha.6",
"jquery": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"node-yaml": "^3.0.3",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"uglify-js": "^2.8.23",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.5.1"
},
"scripts": {
"bundle-prod": "webpack --config webpack.config.prod.js",
"bundle-dev": "webpack --config webpack.config.dev.js",
"watch": "nodemon --watch src/js -x \"npm run bundle-dev\"",
"serve": "php -S localhost:3000 -t web",
"dev": "npm-run-all --parallel watch serve",
"dev-setup": "node script/setup.js",
"setup": "npm-run-all dev-setup bundle-prod bundle-dev",
"secure-modal": "node script/secureModalPass.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Strikesoft/Downloader.git"
},
"keywords": [
"download",
"mega",
"bootstrap",
"downloader"
],
"author": "Johann-S",
"license": "MIT",
"bugs": {
"url": "https://github.com/Strikesoft/Downloader/issues"
},
"homepage": "https://github.com/Strikesoft/Downloader"
}