8
0

package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@ckeditor/ckeditor5-utils",
  3. "version": "18.0.0",
  4. "description": "Miscellaneous utils used by CKEditor 5.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor 5",
  9. "ckeditor5-lib"
  10. ],
  11. "dependencies": {
  12. "lodash-es": "^4.17.10"
  13. },
  14. "devDependencies": {
  15. "@ckeditor/ckeditor5-build-classic": "^18.0.0",
  16. "@ckeditor/ckeditor5-editor-classic": "^18.0.0",
  17. "@ckeditor/ckeditor5-core": "^18.0.0",
  18. "@ckeditor/ckeditor5-engine": "^18.0.0",
  19. "assertion-error": "^1.1.0",
  20. "eslint": "^5.5.0",
  21. "eslint-config-ckeditor5": "^2.0.0",
  22. "husky": "^1.3.1",
  23. "js-beautify": "^1.10.2",
  24. "lint-staged": "^7.0.0",
  25. "stylelint": "^11.1.1",
  26. "stylelint-config-ckeditor5": "^1.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/issues",
  36. "repository": {
  37. "type": "git",
  38. "url": "https://github.com/ckeditor/ckeditor5-utils.git"
  39. },
  40. "files": [
  41. "lang",
  42. "src",
  43. "theme"
  44. ],
  45. "scripts": {
  46. "lint": "eslint --quiet '**/*.js'",
  47. "stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css' 'docs/**/*.css'"
  48. },
  49. "lint-staged": {
  50. "**/*.js": [
  51. "eslint --quiet"
  52. ],
  53. "**/*.css": [
  54. "stylelint --quiet --allow-empty-input"
  55. ]
  56. },
  57. "eslintIgnore": [
  58. "src/lib/**",
  59. "packages/**"
  60. ],
  61. "husky": {
  62. "hooks": {
  63. "pre-commit": "lint-staged"
  64. }
  65. }
  66. }