package.json 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@ckeditor/ckeditor5-highlight",
  3. "version": "0.0.1",
  4. "description": "Highilght feature for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor5",
  7. "ckeditor5-feature"
  8. ],
  9. "dependencies": {
  10. },
  11. "devDependencies": {
  12. "eslint": "^4.8.0",
  13. "eslint-config-ckeditor5": "^1.0.6",
  14. "husky": "^0.14.3",
  15. "lint-staged": "^4.2.3"
  16. },
  17. "engines": {
  18. "node": ">=6.0.0",
  19. "npm": ">=3.0.0"
  20. },
  21. "author": "CKSource (http://cksource.com/)",
  22. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  23. "homepage": "https://ckeditor5.github.io",
  24. "bugs": "https://github.com/ckeditor/ckeditor5-highlight/issues",
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/ckeditor/ckeditor5-highlight.git"
  28. },
  29. "files": [
  30. "lang",
  31. "src",
  32. "theme"
  33. ],
  34. "scripts": {
  35. "lint": "eslint --quiet '**/*.js'",
  36. "precommit": "lint-staged"
  37. },
  38. "lint-staged": {
  39. "**/*.js": [
  40. "eslint --quiet"
  41. ]
  42. },
  43. "eslintIgnore": [
  44. "src/lib/**",
  45. "packages/**"
  46. ]
  47. }