package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@ckeditor/ckeditor5-heading",
  3. "version": "11.0.3",
  4. "description": "Headings 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.2.0",
  14. "@ckeditor/ckeditor5-paragraph": "^11.0.3",
  15. "@ckeditor/ckeditor5-ui": "^13.0.1",
  16. "@ckeditor/ckeditor5-utils": "^13.0.0"
  17. },
  18. "devDependencies": {
  19. "@ckeditor/ckeditor5-editor-classic": "^12.1.2",
  20. "@ckeditor/ckeditor5-engine": "^13.2.0",
  21. "@ckeditor/ckeditor5-enter": "^11.0.3",
  22. "@ckeditor/ckeditor5-image": "^13.1.1",
  23. "@ckeditor/ckeditor5-typing": "^12.1.0",
  24. "@ckeditor/ckeditor5-undo": "^11.0.3",
  25. "eslint": "^5.5.0",
  26. "eslint-config-ckeditor5": "^2.0.0",
  27. "husky": "^1.3.1",
  28. "lint-staged": "^7.0.0"
  29. },
  30. "engines": {
  31. "node": ">=8.0.0",
  32. "npm": ">=5.7.1"
  33. },
  34. "author": "CKSource (http://cksource.com/)",
  35. "license": "GPL-2.0-or-later",
  36. "homepage": "https://ckeditor.com/ckeditor-5",
  37. "bugs": "https://github.com/ckeditor/ckeditor5-heading/issues",
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/ckeditor/ckeditor5-heading.git"
  41. },
  42. "files": [
  43. "lang",
  44. "src",
  45. "theme"
  46. ],
  47. "scripts": {
  48. "lint": "eslint --quiet '**/*.js'"
  49. },
  50. "lint-staged": {
  51. "**/*.js": [
  52. "eslint --quiet"
  53. ]
  54. },
  55. "eslintIgnore": [
  56. "src/lib/**",
  57. "packages/**"
  58. ],
  59. "husky": {
  60. "hooks": {
  61. "pre-commit": "lint-staged"
  62. }
  63. }
  64. }