package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@ckeditor/ckeditor5-utils",
  3. "version": "12.1.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. "ckeditor5": "^12.1.0",
  13. "lodash-es": "^4.17.10"
  14. },
  15. "devDependencies": {
  16. "@ckeditor/ckeditor5-core": "^12.1.0",
  17. "@ckeditor/ckeditor5-engine": "^13.1.0",
  18. "eslint": "^5.5.0",
  19. "eslint-config-ckeditor5": "^1.0.11",
  20. "husky": "^1.3.1",
  21. "lint-staged": "^7.0.0"
  22. },
  23. "engines": {
  24. "node": ">=8.0.0",
  25. "npm": ">=5.7.1"
  26. },
  27. "author": "CKSource (http://cksource.com/)",
  28. "license": "GPL-2.0-or-later",
  29. "homepage": "https://ckeditor.com/ckeditor-5",
  30. "bugs": "https://github.com/ckeditor/ckeditor5-utils/issues",
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/ckeditor/ckeditor5-utils.git"
  34. },
  35. "files": [
  36. "lang",
  37. "src",
  38. "theme"
  39. ],
  40. "scripts": {
  41. "lint": "eslint --quiet '**/*.js'"
  42. },
  43. "lint-staged": {
  44. "**/*.js": [
  45. "eslint --quiet"
  46. ]
  47. },
  48. "eslintIgnore": [
  49. "src/lib/**",
  50. "packages/**"
  51. ],
  52. "husky": {
  53. "hooks": {
  54. "pre-commit": "lint-staged"
  55. }
  56. }
  57. }