-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.7 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
{
"name": "bootstrap-sass-modules",
"version": "3.1.0",
"description": "Bootstrap with SASS Modules",
"homepage": "https://github.com/bastienmoulia/bootstrap-sass-modules",
"main": "scss/bootstrap.scss",
"sass": "scss/bootstrap.scss",
"style": "dist/bootstrap.css",
"keywords": [
"sass",
"scss",
"module",
"modules",
"bootstrap"
],
"scripts": {
"start": "npm run watch",
"css": "npm-run-all css-compile css-prefix css-rtl css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
"css-rtl": "cross-env NODE_ENV=RTL postcss --config build/postcss.config.mjs --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
"css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
"css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache",
"css-lint-vars": "fusv scss/",
"css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
"css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
"css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
"css-prefix-main": "postcss --config build/postcss.config.mjs --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
"css-test": "jasmine --config=scss/tests/jasmine.js",
"watch": "npm-run-all --parallel watch-*",
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
"watch-css-dist": "nodemon --watch dist/css/ --ext css --ignore \"dist/css/*.rtl.*\" --exec \"npm run css-rtl\"",
"watch-css-test": "nodemon --watch scss/ --ext scss,js --exec \"npm run css-test\""
},
"author": "Bastien Moulia",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.20",
"clean-css-cli": "^5.6.3",
"cross-env": "^7.0.3",
"find-unused-sass-variables": "^6.0.0",
"jasmine": "^5.5.0",
"nodemon": "^3.1.7",
"npm-run-all2": "^7.0.1",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"rtlcss": "^4.3.0",
"sass": "^1.81.1",
"sass-true": "^8.1.0",
"shelljs": "^0.8.5",
"stylelint": "^16.11.0",
"stylelint-config-twbs-bootstrap": "^15.1.0"
},
"peerDependencies": {
"bootstrap": "^5.3.3"
}
}