package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@ckeditor/ckeditor5-indent",
  3. "version": "10.1.0",
  4. "description": "Block indentation 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": "^15.0.0",
  14. "@ckeditor/ckeditor5-utils": "^15.0.0"
  15. },
  16. "devDependencies": {
  17. "@ckeditor/ckeditor5-editor-classic": "^15.0.0",
  18. "@ckeditor/ckeditor5-engine": "^15.0.0",
  19. "@ckeditor/ckeditor5-heading": "^15.0.0",
  20. "@ckeditor/ckeditor5-paragraph": "^15.0.0",
  21. "@ckeditor/ckeditor5-ui": "^15.0.0",
  22. "eslint": "^5.15.3",
  23. "eslint-config-ckeditor5": "^2.0.0",
  24. "husky": "^1.3.1",
  25. "lint-staged": "^7.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-indent.git"
  38. },
  39. "files": [
  40. "lang",
  41. "src",
  42. "theme"
  43. ],
  44. "scripts": {
  45. "lint": "eslint --quiet '**/*.js'"
  46. },
  47. "lint-staged": {
  48. "**/*.js": [
  49. "eslint --quiet"
  50. ]
  51. },
  52. "eslintIgnore": [
  53. "src/lib/**",
  54. "packages/**"
  55. ],
  56. "husky": {
  57. "hooks": {
  58. "pre-commit": "lint-staged"
  59. }
  60. }
  61. }