package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@ckeditor/ckeditor5-autosave",
  3. "version": "18.0.0",
  4. "description": "Autosave feature for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor 5",
  9. "ckeditor5-feature",
  10. "ckeditor5-plugin"
  11. ],
  12. "dependencies": {
  13. "@ckeditor/ckeditor5-core": "^19.0.0",
  14. "@ckeditor/ckeditor5-utils": "^19.0.0",
  15. "lodash-es": "^4.17.10"
  16. },
  17. "devDependencies": {
  18. "@ckeditor/ckeditor5-editor-classic": "^19.0.0",
  19. "@ckeditor/ckeditor5-paragraph": "^19.0.0",
  20. "eslint": "^5.5.0",
  21. "eslint-config-ckeditor5": "^2.0.0",
  22. "husky": "^1.3.1",
  23. "lint-staged": "^7.0.0",
  24. "stylelint": "^11.1.1",
  25. "stylelint-config-ckeditor5": "^1.0.0"
  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-autosave.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. }