8
0

package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "ckeditor5",
  3. "version": "1.0.0-alpha.2",
  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.2",
  17. "@ckeditor/ckeditor5-alignment": "^0.0.1",
  18. "@ckeditor/ckeditor5-autoformat": "^1.0.0-alpha.2",
  19. "@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.2",
  20. "@ckeditor/ckeditor5-block-quote": "^1.0.0-alpha.2",
  21. "@ckeditor/ckeditor5-build-balloon": "^1.0.0-alpha.2",
  22. "@ckeditor/ckeditor5-build-classic": "^1.0.0-alpha.2",
  23. "@ckeditor/ckeditor5-build-inline": "^1.0.0-alpha.2",
  24. "@ckeditor/ckeditor5-clipboard": "^1.0.0-alpha.2",
  25. "@ckeditor/ckeditor5-cloudservices": "^1.0.0-alpha.1",
  26. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.2",
  27. "@ckeditor/ckeditor5-easy-image": "^1.0.0-alpha.2",
  28. "@ckeditor/ckeditor5-editor-balloon": "^1.0.0-alpha.2",
  29. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.2",
  30. "@ckeditor/ckeditor5-editor-inline": "^1.0.0-alpha.2",
  31. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.2",
  32. "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.2",
  33. "@ckeditor/ckeditor5-essentials": "^1.0.0-alpha.2",
  34. "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.2",
  35. "@ckeditor/ckeditor5-image": "^1.0.0-alpha.2",
  36. "@ckeditor/ckeditor5-link": "^1.0.0-alpha.2",
  37. "@ckeditor/ckeditor5-list": "^1.0.0-alpha.2",
  38. "@ckeditor/ckeditor5-markdown-gfm": "^1.0.0-alpha.2",
  39. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2",
  40. "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.2",
  41. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.2",
  42. "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.2",
  43. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.2",
  44. "@ckeditor/ckeditor5-upload": "^1.0.0-alpha.2",
  45. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.2",
  46. "@ckeditor/ckeditor5-widget": "^1.0.0-alpha.2"
  47. },
  48. "devDependencies": {
  49. "@ckeditor/ckeditor5-dev-docs": "^8.0.0",
  50. "@ckeditor/ckeditor5-dev-tests": "^10.0.0",
  51. "eslint": "^4.8.0",
  52. "eslint-config-ckeditor5": "^1.0.7",
  53. "husky": "^0.14.3",
  54. "lint-staged": "^4.2.3",
  55. "lerna": "^2.2.0",
  56. "mgit2": "^0.7.2"
  57. },
  58. "engines": {
  59. "node": ">=6.0.0",
  60. "npm": ">=3.0.0"
  61. },
  62. "author": "CKSource (http://cksource.com/)",
  63. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  64. "homepage": "http://ckeditor.com",
  65. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  66. "repository": {
  67. "type": "git",
  68. "url": "https://github.com/ckeditor/ckeditor5.git"
  69. },
  70. "scripts": {
  71. "lint": "eslint --quiet '**/*.js'",
  72. "precommit": "lint-staged",
  73. "test": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test.js",
  74. "test:manual": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test-manual.js",
  75. "docs": "node ./scripts/docs/build-docs.js",
  76. "docs:api": "node ./scripts/docs/build-api-docs.js",
  77. "translations:collect": "ckeditor5-dev-env-translations collect",
  78. "translations:download": "ckeditor5-dev-env-translations download",
  79. "translations:upload": "ckeditor5-dev-env-translations upload",
  80. "changelog": "node ./scripts/release/changelog.js",
  81. "release:dependencies": "node ./scripts/release/release-dependencies.js",
  82. "install-optional-dependencies": "sh ./scripts/install-optional-dependencies.sh",
  83. "switch-to-dev-dev": "sh ./scripts/switch-to-dev-dev.sh",
  84. "build-and-publish-docs": "node ./scripts/docs/build-and-publish.js"
  85. },
  86. "lint-staged": {
  87. "**/*.js": [
  88. "eslint --quiet"
  89. ]
  90. },
  91. "eslintIgnore": [
  92. "build/**",
  93. "coverage/**",
  94. "packages/**"
  95. ]
  96. }