package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@ckeditor/ckeditor5-code-block",
  3. "version": "10.0.0",
  4. "description": "Block Quote feature for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor 5",
  9. "ckeditor5-feature",
  10. "ckeditor5-plugin"
  11. ],
  12. "dependencies": {
  13. "@ckeditor/ckeditor5-core": "^12.3.0",
  14. "@ckeditor/ckeditor5-utils": "^14.0.0",
  15. "lodash-es": "^4.17.10"
  16. },
  17. "devDependencies": {
  18. "eslint": "^5.5.0",
  19. "eslint-config-ckeditor5": "^2.0.0",
  20. "husky": "^1.3.1",
  21. "lint-staged": "^7.0.0"
  22. },
  23. "engines": {
  24. "node": ">=8.0.0",
  25. "npm": ">=5.7.1"
  26. },
  27. "author": "CKSource (http://cksource.com/)",
  28. "license": "GPL-2.0-or-later",
  29. "homepage": "https://ckeditor.com/ckeditor-5",
  30. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/ckeditor/ckeditor5-code-block.git"
  34. },
  35. "files": [
  36. "lang",
  37. "src",
  38. "theme"
  39. ],
  40. "scripts": {
  41. "lint": "eslint --quiet '**/*.js'"
  42. },
  43. "lint-staged": {
  44. "**/*.js": [
  45. "eslint --quiet"
  46. ]
  47. },
  48. "eslintIgnore": [
  49. "src/lib/**",
  50. "packages/**"
  51. ],
  52. "husky": {
  53. "hooks": {
  54. "pre-commit": "lint-staged"
  55. }
  56. }
  57. }