8
0

package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "@ckeditor/ckeditor5-build-inline",
  3. "version": "15.0.0",
  4. "description": "The inline editor build of CKEditor 5 – the best browser-based rich text editor.",
  5. "keywords": [
  6. "ckeditor5-build",
  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. "main": "./build/ckeditor.js",
  24. "files": [
  25. "build"
  26. ],
  27. "devDependencies": {
  28. "@ckeditor/ckeditor5-adapter-ckfinder": "^15.0.0",
  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-ckfinder": "^15.0.0",
  33. "@ckeditor/ckeditor5-core": "^15.0.0",
  34. "@ckeditor/ckeditor5-dev-utils": "^12.0.0",
  35. "@ckeditor/ckeditor5-dev-webpack-plugin": "^8.0.0",
  36. "@ckeditor/ckeditor5-easy-image": "^15.0.0",
  37. "@ckeditor/ckeditor5-editor-inline": "^15.0.0",
  38. "@ckeditor/ckeditor5-essentials": "^15.0.0",
  39. "@ckeditor/ckeditor5-heading": "^15.0.0",
  40. "@ckeditor/ckeditor5-image": "^15.0.0",
  41. "@ckeditor/ckeditor5-indent": "^15.0.0",
  42. "@ckeditor/ckeditor5-link": "^15.0.0",
  43. "@ckeditor/ckeditor5-list": "^15.0.0",
  44. "@ckeditor/ckeditor5-media-embed": "^15.0.0",
  45. "@ckeditor/ckeditor5-paragraph": "^15.0.0",
  46. "@ckeditor/ckeditor5-paste-from-office": "^15.0.0",
  47. "@ckeditor/ckeditor5-table": "^15.0.0",
  48. "@ckeditor/ckeditor5-theme-lark": "^15.0.0",
  49. "eslint": "^5.5.0",
  50. "eslint-config-ckeditor5": "^2.0.0",
  51. "husky": "^1.3.1",
  52. "lint-staged": "^7.0.0",
  53. "postcss-loader": "^3.0.0",
  54. "raw-loader": "^3.1.0",
  55. "style-loader": "^1.0.0",
  56. "terser-webpack-plugin": "^2.2.1",
  57. "webpack": "^4.39.1",
  58. "webpack-cli": "^3.3.6"
  59. },
  60. "engines": {
  61. "node": ">=8.0.0",
  62. "npm": ">=5.7.1"
  63. },
  64. "author": "CKSource (http://cksource.com/)",
  65. "license": "GPL-2.0-or-later",
  66. "homepage": "https://ckeditor.com/ckeditor-5",
  67. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  68. "repository": {
  69. "type": "git",
  70. "url": "https://github.com/ckeditor/ckeditor5-build-inline.git"
  71. },
  72. "scripts": {
  73. "build": "webpack --mode production",
  74. "lint": "eslint --quiet '**/*.js'",
  75. "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"
  76. },
  77. "lint-staged": {
  78. "**/*.js": [
  79. "eslint --quiet"
  80. ]
  81. },
  82. "eslintIgnore": [
  83. "build/**",
  84. "packages/**"
  85. ],
  86. "husky": {
  87. "hooks": {
  88. "pre-commit": "lint-staged"
  89. }
  90. }
  91. }