package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@ckeditor/ckeditor5-indent-block",
  3. "version": "0.0.1",
  4. "description": "Block indent feature for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor 5",
  9. "ckeditor5-feature",
  10. "ckeditor5-plugin"
  11. ],
  12. "dependencies": {
  13. },
  14. "devDependencies": {
  15. "eslint": "^5.15.3",
  16. "eslint-config-ckeditor5": "^1.0.11",
  17. "husky": "^1.3.1",
  18. "lint-staged": "^7.0.0"
  19. },
  20. "engines": {
  21. "node": ">=8.0.0",
  22. "npm": ">=5.7.1"
  23. },
  24. "author": "CKSource (http://cksource.com/)",
  25. "license": "GPL-2.0-or-later",
  26. "homepage": "https://ckeditor.com/ckeditor-5",
  27. "bugs": "https://github.com/ckeditor/ckeditor5-indent-block/issues",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/ckeditor/ckeditor5-indent-block.git"
  31. },
  32. "files": [
  33. "lang",
  34. "src",
  35. "theme"
  36. ],
  37. "scripts": {
  38. "lint": "eslint --quiet '**/*.js'"
  39. },
  40. "lint-staged": {
  41. "**/*.js": [
  42. "eslint --quiet"
  43. ]
  44. },
  45. "eslintIgnore": [
  46. "src/lib/**",
  47. "packages/**"
  48. ],
  49. "husky": {
  50. "hooks": {
  51. "pre-commit": "lint-staged"
  52. }
  53. }
  54. }