package.json 1.1 KB

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