package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "ckeditor5",
  3. "version": "1.0.0-alpha.1",
  4. "description": "The development environment of CKEditor 5.",
  5. "keywords": [
  6. "CKEditor",
  7. "ckeditor5",
  8. "editor",
  9. "WYSIWYG",
  10. "text editor",
  11. "rich-text editor",
  12. "contentEditable",
  13. "editing framework"
  14. ],
  15. "dependencies": {
  16. "@ckeditor/ckeditor5-adapter-ckfinder": "^1.0.0-alpha.1",
  17. "@ckeditor/ckeditor5-autoformat": "^1.0.0-alpha.1",
  18. "@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.1",
  19. "@ckeditor/ckeditor5-block-quote": "^1.0.0-alpha.1",
  20. "@ckeditor/ckeditor5-build-balloon": "^1.0.0-alpha.1",
  21. "@ckeditor/ckeditor5-build-classic": "^1.0.0-alpha.1",
  22. "@ckeditor/ckeditor5-build-inline": "^1.0.0-alpha.1",
  23. "@ckeditor/ckeditor5-clipboard": "^1.0.0-alpha.1",
  24. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.1",
  25. "@ckeditor/ckeditor5-easy-image": "^1.0.0-alpha.1",
  26. "@ckeditor/ckeditor5-editor-balloon": "^1.0.0-alpha.1",
  27. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.1",
  28. "@ckeditor/ckeditor5-editor-inline": "^1.0.0-alpha.1",
  29. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.1",
  30. "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.1",
  31. "@ckeditor/ckeditor5-essentials": "^1.0.0-alpha.1",
  32. "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.1",
  33. "@ckeditor/ckeditor5-image": "^1.0.0-alpha.1",
  34. "@ckeditor/ckeditor5-link": "^1.0.0-alpha.1",
  35. "@ckeditor/ckeditor5-list": "^1.0.0-alpha.1",
  36. "@ckeditor/ckeditor5-markdown-gfm": "^1.0.0-alpha.1",
  37. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.1",
  38. "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.1",
  39. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.1",
  40. "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.1",
  41. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.1",
  42. "@ckeditor/ckeditor5-upload": "^1.0.0-alpha.1",
  43. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.1",
  44. "@ckeditor/ckeditor5-widget": "^1.0.0-alpha.1"
  45. },
  46. "devDependencies": {
  47. "@ckeditor/ckeditor5-dev-docs": "^7.4.1",
  48. "@ckeditor/ckeditor5-dev-tests": "^8.2.2",
  49. "eslint": "^4.8.0",
  50. "eslint-config-ckeditor5": "^1.0.6",
  51. "gulp": "^3.9.1",
  52. "husky": "^0.14.3",
  53. "lint-staged": "^4.2.3",
  54. "lerna": "^2.2.0",
  55. "mgit2": "^0.7.2"
  56. },
  57. "engines": {
  58. "node": ">=6.0.0",
  59. "npm": ">=3.0.0"
  60. },
  61. "author": "CKSource (http://cksource.com/)",
  62. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  63. "homepage": "http://ckeditor.com",
  64. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  65. "repository": {
  66. "type": "git",
  67. "url": "https://github.com/ckeditor/ckeditor5.git"
  68. },
  69. "scripts": {
  70. "lint": "eslint --quiet '**/*.js'",
  71. "precommit": "lint-staged",
  72. "test": "node --max_old_space_size=4096 ./node_modules/.bin/ckeditor5-dev-tests --reporter=dots",
  73. "install-optional-dependencies": "./scripts/install-optional-dependencies.sh",
  74. "switch-to-dev-dev": "./scripts/switch-to-dev-dev.sh",
  75. "build-and-publish-docs": "./scripts/docs/build-and-publish.js"
  76. },
  77. "lint-staged": {
  78. "**/*.js": [
  79. "eslint --quiet"
  80. ]
  81. },
  82. "eslintIgnore": [
  83. "build/**",
  84. "coverage/**",
  85. "packages/**"
  86. ]
  87. }