8
0

package.json 1.1 KB

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