-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
25 lines (25 loc) · 1.18 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
{
"name": "bootstrap-rtl",
"description": "Easy way to made RTL Bootstrap framework",
"version": "1.2.0",
"homepage": "https://github.com/parsakafi/bootstrap-rtl",
"author": "Parsa Kafi (https://parsa.ws)",
"scripts": {
"css": "npm-run-all css-lint css-compile css-prefix css-minify",
"css-lint": "stylelint \"scss/*.scss\" --cache --cache-location .cache/.stylelintcache --fix",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/ -o dist/",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/*.css\" \"!dist/*.min.css\"",
"css-minify": "cleancss --level 1 --format breakWith=lf --source-map --source-map-inline-sources --output dist/bootstrap-rtl.min.css dist/bootstrap-rtl.css",
"watch-css": "nodemon --watch scss/ --ext scss --exec \"npm run css\"",
"watch-css-doc": "sass --watch demo/style.scss:demo/style.css",
"dist": "npm-run-all --parallel css"
},
"devDependencies": {
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"stylelint": "^13.5.0",
"stylelint-config-twbs-bootstrap": "^2.0.2"
}
}