package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@ckeditor/ckeditor5-heading",
  3. "version": "1.0.0-alpha.2",
  4. "description": "Headings feature for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor5",
  7. "ckeditor5-feature"
  8. ],
  9. "dependencies": {
  10. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.2",
  11. "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.2",
  12. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.2",
  13. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.2",
  14. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2",
  15. "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.2"
  16. },
  17. "devDependencies": {
  18. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.2",
  19. "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.2",
  20. "@ckeditor/ckeditor5-image": "^1.0.0-alpha.2",
  21. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.2",
  22. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.2",
  23. "eslint": "^4.8.0",
  24. "eslint-config-ckeditor5": "^1.0.7",
  25. "husky": "^0.14.3",
  26. "lint-staged": "^4.2.3"
  27. },
  28. "engines": {
  29. "node": ">=6.0.0",
  30. "npm": ">=3.0.0"
  31. },
  32. "author": "CKSource (http://cksource.com/)",
  33. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  34. "homepage": "https://ckeditor5.github.io",
  35. "bugs": "https://github.com/ckeditor/ckeditor5-heading/issues",
  36. "repository": {
  37. "type": "git",
  38. "url": "https://github.com/ckeditor/ckeditor5-heading.git"
  39. },
  40. "files": [
  41. "lang",
  42. "src",
  43. "theme"
  44. ],
  45. "scripts": {
  46. "lint": "eslint --quiet '**/*.js'",
  47. "precommit": "lint-staged"
  48. },
  49. "lint-staged": {
  50. "**/*.js": [
  51. "eslint --quiet"
  52. ]
  53. },
  54. "eslintIgnore": [
  55. "src/lib/**",
  56. "packages/**"
  57. ]
  58. }