package.json 1.6 KB

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