package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "@ckeditor/ckeditor5-core",
  3. "version": "15.0.0",
  4. "description": "The core architecture of CKEditor 5 – the best browser-based rich text editor.",
  5. "keywords": [
  6. "ckeditor5-lib",
  7. "ckeditor",
  8. "ckeditor5",
  9. "ckeditor 5",
  10. "wysiwyg",
  11. "rich text",
  12. "editor",
  13. "html",
  14. "contentEditable",
  15. "editing",
  16. "operational transformation",
  17. "ot",
  18. "collaboration",
  19. "collaborative",
  20. "real-time",
  21. "framework"
  22. ],
  23. "dependencies": {
  24. "@ckeditor/ckeditor5-engine": "^15.0.0",
  25. "@ckeditor/ckeditor5-utils": "^15.0.0",
  26. "lodash-es": "^4.17.10"
  27. },
  28. "devDependencies": {
  29. "@ckeditor/ckeditor5-autoformat": "^15.0.0",
  30. "@ckeditor/ckeditor5-basic-styles": "^15.0.0",
  31. "@ckeditor/ckeditor5-block-quote": "^15.0.0",
  32. "@ckeditor/ckeditor5-editor-classic": "^15.0.0",
  33. "@ckeditor/ckeditor5-essentials": "^15.0.0",
  34. "@ckeditor/ckeditor5-heading": "^15.0.0",
  35. "@ckeditor/ckeditor5-image": "^15.0.0",
  36. "@ckeditor/ckeditor5-indent": "^15.0.0",
  37. "@ckeditor/ckeditor5-link": "^15.0.0",
  38. "@ckeditor/ckeditor5-list": "^15.0.0",
  39. "@ckeditor/ckeditor5-media-embed": "^15.0.0",
  40. "@ckeditor/ckeditor5-paragraph": "^15.0.0",
  41. "@ckeditor/ckeditor5-table": "^15.0.0",
  42. "@ckeditor/ckeditor5-ui": "^15.0.0",
  43. "eslint": "^5.5.0",
  44. "eslint-config-ckeditor5": "^2.0.0",
  45. "husky": "^1.3.1",
  46. "lint-staged": "^7.0.0",
  47. "stylelint": "^11.1.1"
  48. },
  49. "engines": {
  50. "node": ">=8.0.0",
  51. "npm": ">=5.7.1"
  52. },
  53. "author": "CKSource (http://cksource.com/)",
  54. "license": "GPL-2.0-or-later",
  55. "homepage": "https://ckeditor.com/ckeditor-5",
  56. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  57. "repository": {
  58. "type": "git",
  59. "url": "https://github.com/ckeditor/ckeditor5-core.git"
  60. },
  61. "files": [
  62. "lang",
  63. "src",
  64. "theme"
  65. ],
  66. "scripts": {
  67. "lint": "eslint --quiet '**/*.js'",
  68. "stylelint": "stylelint --quiet 'theme/**/*.css' 'docs/**/*.css'"
  69. },
  70. "lint-staged": {
  71. "**/*.js": [
  72. "eslint --quiet"
  73. ],
  74. "**/*.css": [
  75. "stylelint --quiet"
  76. ]
  77. },
  78. "eslintIgnore": [
  79. "src/lib/**",
  80. "packages/**"
  81. ],
  82. "husky": {
  83. "hooks": {
  84. "pre-commit": "lint-staged"
  85. }
  86. }
  87. }