8
0

package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@ckeditor/ckeditor5-utils",
  3. "version": "10.0.0",
  4. "description": "Miscellaneous utils used by CKEditor 5.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor 5",
  9. "ckeditor5-lib"
  10. ],
  11. "devDependencies": {
  12. "@ckeditor/ckeditor5-core": "^10.0.0",
  13. "@ckeditor/ckeditor5-engine": "^10.0.0",
  14. "del": "^2.2.0",
  15. "eslint": "^4.15.0",
  16. "eslint-config-ckeditor5": "^1.0.7",
  17. "husky": "^0.14.3",
  18. "lint-staged": "^7.0.0",
  19. "lodash-cli": "^4"
  20. },
  21. "engines": {
  22. "node": ">=6.0.0",
  23. "npm": ">=3.0.0"
  24. },
  25. "author": "CKSource (http://cksource.com/)",
  26. "license": "GPL-2.0-or-later",
  27. "homepage": "https://ckeditor.com",
  28. "bugs": "https://github.com/ckeditor/ckeditor5-utils/issues",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/ckeditor/ckeditor5-utils.git"
  32. },
  33. "files": [
  34. "lang",
  35. "src",
  36. "theme"
  37. ],
  38. "scripts": {
  39. "lint": "eslint --quiet '**/*.js'",
  40. "precommit": "lint-staged"
  41. },
  42. "lint-staged": {
  43. "**/*.js": [
  44. "eslint --quiet"
  45. ]
  46. },
  47. "eslintIgnore": [
  48. "src/lib/**",
  49. "packages/**"
  50. ]
  51. }