package.json 1.5 KB

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