package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@ckeditor/ckeditor5-watchdog",
  3. "version": "0.1.0",
  4. "description": "A watchdog feature for CKEditor 5 editors.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor 5",
  9. "ckeditor5-lib"
  10. ],
  11. "dependencies": {
  12. "@ckeditor/ckeditor5-utils": "^12.1.1",
  13. "lodash-es": "^4.17.10"
  14. },
  15. "devDependencies": {
  16. "eslint": "^5.5.0",
  17. "eslint-config-ckeditor5": "^1.0.11",
  18. "husky": "^2.4.1",
  19. "lint-staged": "^8.2.1"
  20. },
  21. "engines": {
  22. "node": ">=8.0.0",
  23. "npm": ">=5.7.1"
  24. },
  25. "author": "CKSource (http://cksource.com/)",
  26. "license": "GPL-2.0-or-later",
  27. "homepage": "https://ckeditor.com/ckeditor-5",
  28. "bugs": "https://github.com/ckeditor/ckeditor5-utils/issues",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/ckeditor/ckeditor5-utils.git"
  32. },
  33. "files": [
  34. "lang",
  35. "src",
  36. "theme"
  37. ],
  38. "scripts": {
  39. "lint": "eslint --quiet '**/*.js'"
  40. },
  41. "lint-staged": {
  42. "**/*.js": [
  43. "eslint --quiet"
  44. ]
  45. },
  46. "eslintIgnore": [
  47. "src/lib/**",
  48. "packages/**"
  49. ],
  50. "husky": {
  51. "hooks": {
  52. "pre-commit": "lint-staged"
  53. }
  54. }
  55. }