8
0

package.json 1.3 KB

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