package.json 1.3 KB

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