package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@ckeditor/ckeditor5-easy-image",
  3. "version": "16.0.0",
  4. "description": "Easy Image feature for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor 5",
  9. "ckeditor5-feature",
  10. "ckeditor5-plugin"
  11. ],
  12. "dependencies": {
  13. "@ckeditor/ckeditor-cloud-services-core": "^17.0.0",
  14. "@ckeditor/ckeditor5-cloud-services": "^17.0.0",
  15. "@ckeditor/ckeditor5-core": "^17.0.0",
  16. "@ckeditor/ckeditor5-image": "^17.0.0",
  17. "@ckeditor/ckeditor5-upload": "^17.0.0"
  18. },
  19. "devDependencies": {
  20. "@ckeditor/ckeditor5-clipboard": "^17.0.0",
  21. "@ckeditor/ckeditor5-editor-classic": "^17.0.0",
  22. "@ckeditor/ckeditor5-paragraph": "^17.0.0",
  23. "@ckeditor/ckeditor5-utils": "^17.0.0",
  24. "eslint": "^5.5.0",
  25. "eslint-config-ckeditor5": "^2.0.0",
  26. "husky": "^1.3.1",
  27. "lint-staged": "^7.0.0",
  28. "stylelint": "^11.1.1",
  29. "stylelint-config-ckeditor5": "^1.0.0"
  30. },
  31. "engines": {
  32. "node": ">=8.0.0",
  33. "npm": ">=5.7.1"
  34. },
  35. "author": "CKSource (http://cksource.com/)",
  36. "license": "GPL-2.0-or-later",
  37. "homepage": "https://ckeditor.com/ckeditor-5",
  38. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  39. "repository": {
  40. "type": "git",
  41. "url": "https://github.com/ckeditor/ckeditor5-easy-image.git"
  42. },
  43. "files": [
  44. "lang",
  45. "src",
  46. "theme"
  47. ],
  48. "scripts": {
  49. "lint": "eslint --quiet '**/*.js'",
  50. "stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css' 'docs/**/*.css'"
  51. },
  52. "lint-staged": {
  53. "**/*.js": [
  54. "eslint --quiet"
  55. ],
  56. "**/*.css": [
  57. "stylelint --quiet --allow-empty-input"
  58. ]
  59. },
  60. "eslintIgnore": [
  61. "src/lib/**",
  62. "packages/**"
  63. ],
  64. "husky": {
  65. "hooks": {
  66. "pre-commit": "lint-staged"
  67. }
  68. }
  69. }