package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "@ckeditor/ckeditor5-build-balloon",
  3. "version": "12.3.1",
  4. "description": "The balloon editor build of CKEditor 5 – the best browser-based rich text editor.",
  5. "keywords": [
  6. "wysiwyg",
  7. "rich text",
  8. "editor",
  9. "html",
  10. "contentEditable",
  11. "editing",
  12. "operational transformation",
  13. "ot",
  14. "collaboration",
  15. "collaborative",
  16. "real-time",
  17. "framework",
  18. "ckeditor5-build",
  19. "ckeditor",
  20. "ckeditor5",
  21. "ckeditor 5"
  22. ],
  23. "main": "./build/ckeditor.js",
  24. "files": [
  25. "build"
  26. ],
  27. "devDependencies": {
  28. "@ckeditor/ckeditor5-adapter-ckfinder": "^11.0.4",
  29. "@ckeditor/ckeditor5-autoformat": "^11.0.4",
  30. "@ckeditor/ckeditor5-basic-styles": "^11.1.3",
  31. "@ckeditor/ckeditor5-block-quote": "^11.1.2",
  32. "@ckeditor/ckeditor5-ckfinder": "^11.0.4",
  33. "@ckeditor/ckeditor5-core": "^12.2.1",
  34. "@ckeditor/ckeditor5-dev-utils": "^12.0.0",
  35. "@ckeditor/ckeditor5-dev-webpack-plugin": "^8.0.0",
  36. "@ckeditor/ckeditor5-easy-image": "^11.0.4",
  37. "@ckeditor/ckeditor5-editor-balloon": "^12.2.1",
  38. "@ckeditor/ckeditor5-essentials": "^11.0.4",
  39. "@ckeditor/ckeditor5-heading": "^11.0.4",
  40. "@ckeditor/ckeditor5-image": "^13.1.2",
  41. "@ckeditor/ckeditor5-link": "^11.1.1",
  42. "@ckeditor/ckeditor5-list": "^12.0.4",
  43. "@ckeditor/ckeditor5-media-embed": "^11.1.3",
  44. "@ckeditor/ckeditor5-paragraph": "^11.0.4",
  45. "@ckeditor/ckeditor5-paste-from-office": "^11.0.4",
  46. "@ckeditor/ckeditor5-table": "^13.0.2",
  47. "@ckeditor/ckeditor5-theme-lark": "^14.1.1",
  48. "eslint": "^5.5.0",
  49. "eslint-config-ckeditor5": "^2.0.0",
  50. "husky": "^1.3.1",
  51. "lint-staged": "^7.0.0",
  52. "postcss-loader": "^3.0.0",
  53. "raw-loader": "^1.0.0",
  54. "style-loader": "^1.0.0",
  55. "uglifyjs-webpack-plugin": "^1.2.7",
  56. "webpack": "^4.15.0",
  57. "webpack-cli": "^3.0.8"
  58. },
  59. "engines": {
  60. "node": ">=8.0.0",
  61. "npm": ">=5.7.1"
  62. },
  63. "author": "CKSource (http://cksource.com/)",
  64. "license": "GPL-2.0-or-later",
  65. "homepage": "https://ckeditor.com/ckeditor-5",
  66. "bugs": "https://github.com/ckeditor/ckeditor5-build-balloon/issues",
  67. "repository": {
  68. "type": "git",
  69. "url": "https://github.com/ckeditor/ckeditor5-build-balloon.git"
  70. },
  71. "scripts": {
  72. "build": "webpack --mode production",
  73. "lint": "eslint --quiet '**/*.js'",
  74. "preversion": "npm run build; if [ -n \"$(git status src/ckeditor.js build/ --porcelain)\" ]; then git add -u src/ckeditor.js build/ && git commit -m 'Internal: Build.'; fi"
  75. },
  76. "lint-staged": {
  77. "**/*.js": [
  78. "eslint --quiet"
  79. ]
  80. },
  81. "eslintIgnore": [
  82. "build/**",
  83. "packages/**"
  84. ],
  85. "husky": {
  86. "hooks": {
  87. "pre-commit": "lint-staged"
  88. }
  89. }
  90. }