package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@ckeditor/ckeditor5-clipboard",
  3. "version": "1.0.0-alpha.2",
  4. "description": "Clipboard integration 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-engine": "^1.0.0-alpha.2"
  12. },
  13. "devDependencies": {
  14. "@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.2",
  15. "@ckeditor/ckeditor5-block-quote": "^1.0.0-alpha.2",
  16. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.2",
  17. "@ckeditor/ckeditor5-essentials": "^1.0.0-alpha.2",
  18. "@ckeditor/ckeditor5-link": "^1.0.0-alpha.2",
  19. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2",
  20. "eslint": "^4.15.0",
  21. "eslint-config-ckeditor5": "^1.0.7",
  22. "husky": "^0.14.3",
  23. "lint-staged": "^6.0.0"
  24. },
  25. "engines": {
  26. "node": ">=6.0.0",
  27. "npm": ">=3.0.0"
  28. },
  29. "author": "CKSource (http://cksource.com/)",
  30. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  31. "homepage": "https://ckeditor5.github.io",
  32. "bugs": "https://github.com/ckeditor/ckeditor5-clipboard/issues",
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/ckeditor/ckeditor5-clipboard.git"
  36. },
  37. "files": [
  38. "lang",
  39. "src",
  40. "theme"
  41. ],
  42. "scripts": {
  43. "lint": "eslint --quiet '**/*.js'",
  44. "precommit": "lint-staged"
  45. },
  46. "lint-staged": {
  47. "**/*.js": [
  48. "eslint --quiet"
  49. ]
  50. },
  51. "eslintIgnore": [
  52. "src/lib/**",
  53. "packages/**"
  54. ]
  55. }