bower.json 933 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "cropper",
  3. "description": "A simple jQuery image cropping plugin.",
  4. "main": [
  5. "dist/cropper.js",
  6. "dist/cropper.css"
  7. ],
  8. "keywords": [
  9. "image",
  10. "crop",
  11. "cropper",
  12. "cropping",
  13. "move",
  14. "zoom",
  15. "rotate",
  16. "scale",
  17. "jquery",
  18. "plugin",
  19. "html",
  20. "css",
  21. "javascript",
  22. "front-end",
  23. "web",
  24. "development"
  25. ],
  26. "homepage": "https://github.com/fengyuanchen/cropper",
  27. "authors": [
  28. "Fengyuan Chen"
  29. ],
  30. "license": "MIT",
  31. "ignore": [
  32. "**/.*",
  33. "node_modules",
  34. "bower_components",
  35. "tests",
  36. "test",
  37. "examples",
  38. "assets",
  39. "demo",
  40. "docs",
  41. "gulpfile.js",
  42. "CONTRIBUTING.md",
  43. "FAQ.md"
  44. ],
  45. "dependencies": {
  46. "jquery": ">= 1.9.1"
  47. },
  48. "devDependencies": {
  49. "bootstrap": "~3.3.6",
  50. "fontawesome": "~4.6.1",
  51. "html5-boilerplate": "~5.3.0",
  52. "jquery": "~1.12.3",
  53. "qunit": "~1.22.0"
  54. }
  55. }