package.json 1.3 KB

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