8
0

package.json 1.6 KB

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