8
0

package.json 1.2 KB

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