package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@ckeditor/ckeditor5-ui",
  3. "version": "1.0.0-alpha.2",
  4. "description": "The UI framework and standard UI library of CKEditor 5.",
  5. "keywords": [
  6. "ckeditor5",
  7. "ckeditor5-lib"
  8. ],
  9. "dependencies": {
  10. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.2",
  11. "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.2",
  12. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.2"
  13. },
  14. "devDependencies": {
  15. "@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.2",
  16. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.2",
  17. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.2",
  18. "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.2",
  19. "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.2",
  20. "@ckeditor/ckeditor5-image": "^1.0.0-alpha.2",
  21. "@ckeditor/ckeditor5-link": "^1.0.0-alpha.2",
  22. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2",
  23. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.2",
  24. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.2",
  25. "del": "^2.2.0",
  26. "eslint": "^4.15.0",
  27. "eslint-config-ckeditor5": "^1.0.7",
  28. "husky": "^0.14.3",
  29. "lint-staged": "^6.0.0",
  30. "lodash-cli": "^4"
  31. },
  32. "engines": {
  33. "node": ">=6.0.0",
  34. "npm": ">=3.0.0"
  35. },
  36. "author": "CKSource (http://cksource.com/)",
  37. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  38. "homepage": "https://ckeditor5.github.io",
  39. "bugs": "https://github.com/ckeditor/ckeditor5-ui/issues",
  40. "repository": {
  41. "type": "git",
  42. "url": "https://github.com/ckeditor/ckeditor5-ui.git"
  43. },
  44. "files": [
  45. "lang",
  46. "src",
  47. "theme"
  48. ],
  49. "scripts": {
  50. "lint": "eslint --quiet '**/*.js'",
  51. "precommit": "lint-staged"
  52. },
  53. "lint-staged": {
  54. "**/*.js": [
  55. "eslint --quiet"
  56. ]
  57. },
  58. "eslintIgnore": [
  59. "src/lib/**",
  60. "packages/**"
  61. ]
  62. }