Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1002 B

7 years ago
6 years ago
7 years ago
7 years ago
6 years ago
7 years ago
6 years ago
6 years ago
7 years ago
  1. {
  2. "name": "crispy-boilerplate",
  3. "version": "0.9.4",
  4. "description": "Flat Sass Boilerplate to give you a amount of Basic Settings, Mixins and Functions",
  5. "repository": {
  6. "type": "git",
  7. "url": "git@github.com:HerrHase/crispy-boilerplate.git"
  8. },
  9. "author": "Björn Hase",
  10. "license": "MIT",
  11. "dependencies": {
  12. "normalize.css": "^7.0.0",
  13. "reflex-grid": "^2.0.1"
  14. },
  15. "config": {
  16. "dest_dir": "dest/",
  17. "src_dir": "src/",
  18. },
  19. "scripts": {
  20. "preinstall": "npm install -g node-sass clean-css-cli postcss-cli autoprefixer",
  21. "build": "npm run css:build",
  22. "css:build": "npm run css:clean && npm run css:postcss && npm run css:minify",
  23. "css:clean": "rimraf $npm_package_config_dist_dir/css/*",
  24. "css:postcss": "postcss $npm_package_config_dest_dir/css/*.css --use autoprefixer -d $npm_package_config_dest_dir/css/",
  25. "css:minify": "cleancss $npm_package_config_dest_dir/css/landingPage.css > $npm_package_config_dest_dir/css/landingPage.min.css"
  26. }
  27. }