This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
76 lines (76 loc) · 3.14 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
{
"name": "bootstrap-dark-4",
"version": "0.6.1",
"description": "The Definitive Guide to Dark Mode and Bootstrap 4 - A proof of concept",
"main": "",
"scripts": {
"test": "echo \"Info: no test specified\" && exit 0",
"build": "npm-run-all css images",
"start": "npm-run-all --parallel serve watch",
"serve": "browser-sync start --server --files \"dist/*.css\"",
"css": "npm-run-all css-compile css-prefix css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css --load-path=node_modules/bootstrap/scss scss/:dist/ --quiet",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/*.css\" \"!dist/*.rtl*.css\" \"!dist/*.min.css\"",
"css-minify": "npm-run-all --parallel css-minify-*",
"css-minify-core": "cleancss -O1 --format breakWith=lf --output dist/bootstrap.min.css dist/bootstrap.css",
"css-minify-dark": "cleancss -O1 --format breakWith=lf --output dist/bootstrap-dark.min.css dist/bootstrap-dark.css",
"css-minify-night": "cleancss -O1 --format breakWith=lf --output dist/bootstrap-night.min.css dist/bootstrap-night.css",
"css-minify-nightfall": "cleancss -O1 --format breakWith=lf --output dist/bootstrap-nightfall.min.css dist/bootstrap-nightfall.css",
"css-minify-nightshade": "cleancss -O1 --format breakWith=lf --output dist/bootstrap-nightshade.min.css dist/bootstrap-nightshade.css",
"css-minify-unlit": "cleancss -O1 --format breakWith=lf --output dist/bootstrap-unlit.min.css dist/bootstrap-unlit.css",
"images": "npm-run-all --parallel images-*",
"images-ico": "imagemin img/src/*.ico --out-dir=img",
"images-jpg": "imagemin img/src/*.jpg --out-dir=img --plugin.mozjpeg.quality=75 --plugin.mozjpeg.progressive=true",
"images-png": "imagemin img/src/*.png --out-dir=img --plugin.optipng.optimizationLevel=5",
"images-svg": "svgo -f img/src -o img —-config build/svgo.config.js",
"watch": "npm-run-all --parallel watch-*",
"watch-scss": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-compile css-prefix css-minify\""
},
"author": "Vino Rodrigues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vinorodrigues/bootstrap-dark.git"
},
"bugs": {
"url": "https://github.com/vinorodrigues/bootstrap-dark/issues"
},
"style": "dist/bootstrap-dark.css",
"sass": "scss/bootstrap-dark.scss",
"files": [
"dist/*.{css,map}",
"scss/**/*.scss",
"README.md",
"LICENSE.md"
],
"keywords": [
"bootstrap",
"css",
"sass",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"devDependencies": {
"autoprefixer": "^10.4.4",
"browser-sync": "^2.27.9",
"imagemin": "^8.0.1",
"imagemin-cli": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"sass": "^1.49.11",
"svgo": "^2.8.0"
},
"dependencies": {
"bootstrap": "~4.6.1"
},
"peerDependencies": {
"jquery": "^3.6.0",
"popper.js": "^1.16.1"
}
}