package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@ckeditor/ckeditor5-cloud-services",
  3. "version": "15.0.0",
  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": "^16.0.0",
  13. "@ckeditor/ckeditor5-core": "^16.0.0"
  14. },
  15. "devDependencies": {
  16. "@ckeditor/ckeditor5-editor-classic": "^16.0.0",
  17. "eslint": "^5.5.0",
  18. "eslint-config-ckeditor5": "^2.0.0",
  19. "husky": "^1.3.1",
  20. "lint-staged": "^7.0.0",
  21. "stylelint": "^11.1.1",
  22. "stylelint-config-ckeditor5": "^1.0.0"
  23. },
  24. "engines": {
  25. "node": ">=8.0.0",
  26. "npm": ">=5.7.1"
  27. },
  28. "author": "CKSource (http://cksource.com/)",
  29. "license": "GPL-2.0-or-later",
  30. "homepage": "https://ckeditor.com/ckeditor-5",
  31. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/ckeditor/ckeditor5-cloud-services.git"
  35. },
  36. "files": [
  37. "lang",
  38. "src",
  39. "theme"
  40. ],
  41. "scripts": {
  42. "lint": "eslint --quiet '**/*.js'",
  43. "stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css' 'docs/**/*.css'"
  44. },
  45. "lint-staged": {
  46. "**/*.js": [
  47. "eslint --quiet"
  48. ],
  49. "**/*.css": [
  50. "stylelint --quiet --allow-empty-input"
  51. ]
  52. },
  53. "eslintIgnore": [
  54. "src/lib/**",
  55. "packages/**"
  56. ],
  57. "husky": {
  58. "hooks": {
  59. "pre-commit": "lint-staged"
  60. }
  61. }
  62. }