package.json 1.4 KB

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