8
0

package.json 1.7 KB

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