package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "uiu-cse",
  3. "version": "1.0.0",
  4. "description": "Custom WordPress theme for UIU - CSE",
  5. "author": "ASD Team",
  6. "license": "GPL-2.0-or-later",
  7. "keywords": [
  8. "UIU",
  9. "University",
  10. "WordPress",
  11. "Theme"
  12. ],
  13. "homepage": "https://github.com/rousnay/uiu-cse",
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/rousnay/uiu-cse.git"
  17. },
  18. "bugs": {
  19. "url": "https://github.com/rousnay/uiu-cse/issues"
  20. },
  21. "devDependencies": {
  22. "@wordpress/scripts": "^19.2.2",
  23. "dir-archiver": "^1.1.1",
  24. "node-sass": "^7.0.1",
  25. "rtlcss": "^3.5.0"
  26. },
  27. "rtlcssConfig": {
  28. "options": {
  29. "autoRename": false,
  30. "autoRenameStrict": false,
  31. "blacklist": {},
  32. "clean": true,
  33. "greedy": false,
  34. "processUrls": false,
  35. "stringMap": []
  36. },
  37. "plugins": [],
  38. "map": false
  39. },
  40. "scripts": {
  41. "watch": "node-sass sass/ -o ./ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w",
  42. "compile:css": "node-sass sass/ -o ./ && stylelint '*.css' --fix || true && stylelint '*.css' --fix",
  43. "compile:rtl": "rtlcss style.css style-rtl.css",
  44. "lint:scss": "wp-scripts lint-style 'sass/**/*.scss'",
  45. "lint:js": "wp-scripts lint-js 'js/*.js'",
  46. "bundle": "dir-archiver --src . --dest ../_s.zip --exclude .DS_Store .stylelintrc.json .eslintrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json .travis.yml phpcs.xml.dist sass style.css.map yarn.lock"
  47. }
  48. }