package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.1",
  11. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.1",
  12. "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.1"
  13. },
  14. "devDependencies": {
  15. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.1",
  16. "eslint": "^4.8.0",
  17. "eslint-config-ckeditor5": "^1.0.6",
  18. "husky": "^0.14.3",
  19. "lint-staged": "^4.2.3"
  20. },
  21. "engines": {
  22. "node": ">=6.0.0",
  23. "npm": ">=3.0.0"
  24. },
  25. "author": "CKSource (http://cksource.com/)",
  26. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  27. "homepage": "https://ckeditor5.github.io",
  28. "bugs": "https://github.com/ckeditor/ckeditor5-highlight/issues",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/ckeditor/ckeditor5-highlight.git"
  32. },
  33. "files": [
  34. "lang",
  35. "src",
  36. "theme"
  37. ],
  38. "scripts": {
  39. "lint": "eslint --quiet '**/*.js'",
  40. "precommit": "lint-staged"
  41. },
  42. "lint-staged": {
  43. "**/*.js": [
  44. "eslint --quiet"
  45. ]
  46. },
  47. "eslintIgnore": [
  48. "src/lib/**",
  49. "packages/**"
  50. ]
  51. }