8
0

package.json 1.2 KB

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