package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "select2-bootstrap-5-theme",
  3. "description": "Select2 v4 theme for Bootstrap 5",
  4. "version": "1.3.0",
  5. "license": "MIT",
  6. "author": "Andrew Palfrey <apalfrey@apalfrey.me>",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/apalfrey/select2-bootstrap-5-theme.git"
  10. },
  11. "bugs": "https://github.com/apalfrey/select2-bootstrap-5-theme/issues",
  12. "files": [
  13. "dist/",
  14. "src/",
  15. "LICENSE",
  16. "README.md"
  17. ],
  18. "keywords": [
  19. "select2",
  20. "theme",
  21. "select2-theme",
  22. "bootstrap",
  23. "bootstrap5",
  24. "css",
  25. "scss",
  26. "sass"
  27. ],
  28. "main": "",
  29. "style": "dist/select2-bootstrap-5-theme.css",
  30. "sass": "src/select2-bootstrap-5-theme.scss",
  31. "scripts": {
  32. "start": "gulp",
  33. "start:full": "npm-run-all -p start docs docs:serve",
  34. "clean": "gulp clean",
  35. "lint": "gulp lint",
  36. "compile": "gulp compile",
  37. "compile:main": "gulp compile:main",
  38. "compile:rtl": "gulp compile:rtl",
  39. "watch": "gulp watch",
  40. "docs": "gulp docs",
  41. "docs:clean": "gulp docs:clean",
  42. "docs:lint": "gulp docs:lint",
  43. "docs:compile": "gulp docs:compile",
  44. "docs:compile:main": "gulp docs:compile:main",
  45. "docs:compile:rtl": "gulp docs:compile:rtl",
  46. "docs:watch": "gulp docs:watch",
  47. "docs:build": "cd docs && bundle exec jekyll build",
  48. "docs:serve": "cd docs && bundle exec jekyll serve --config _config_dev.yml"
  49. },
  50. "dependencies": {
  51. "bootstrap": "^5.1.3"
  52. },
  53. "devDependencies": {
  54. "@ronilaukkarinen/gulp-stylelint": "^14.0.5",
  55. "autoprefixer": "^10.4.2",
  56. "cssnano": "^5.1.0",
  57. "del": "^6.0.0",
  58. "gulp": "^4.0.2",
  59. "gulp-if": "^3.0.0",
  60. "gulp-plumber": "^1.2.1",
  61. "gulp-postcss": "^9.0.1",
  62. "gulp-rename": "^2.0.0",
  63. "gulp-sass": "^5.1.0",
  64. "npm-run-all": "^4.1.5",
  65. "postcss": "^8.4.6",
  66. "rtlcss": "^3.5.0",
  67. "sass": "^1.49.8",
  68. "stylelint": "^14.5.2",
  69. "stylelint-config-twbs-bootstrap": "^3.0.1"
  70. }
  71. }