8
0

package.json 1.7 KB

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