package.json 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-cloudeservices": "ckeditor/ckeditor5-cloudservices",
  25. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.1",
  26. "@ckeditor/ckeditor5-easy-image": "^1.0.0-alpha.1",
  27. "@ckeditor/ckeditor5-editor-balloon": "^1.0.0-alpha.1",
  28. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.1",
  29. "@ckeditor/ckeditor5-editor-inline": "^1.0.0-alpha.1",
  30. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.1",
  31. "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.1",
  32. "@ckeditor/ckeditor5-essentials": "^1.0.0-alpha.1",
  33. "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.1",
  34. "@ckeditor/ckeditor5-image": "^1.0.0-alpha.1",
  35. "@ckeditor/ckeditor5-link": "^1.0.0-alpha.1",
  36. "@ckeditor/ckeditor5-list": "^1.0.0-alpha.1",
  37. "@ckeditor/ckeditor5-markdown-gfm": "^1.0.0-alpha.1",
  38. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.1",
  39. "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.1",
  40. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.1",
  41. "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.1",
  42. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.1",
  43. "@ckeditor/ckeditor5-upload": "^1.0.0-alpha.1",
  44. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.1",
  45. "@ckeditor/ckeditor5-widget": "^1.0.0-alpha.1"
  46. },
  47. "devDependencies": {
  48. "@ckeditor/ckeditor5-dev-docs": "^7.5.1",
  49. "@ckeditor/ckeditor5-dev-tests": "^8.2.5",
  50. "eslint": "^4.8.0",
  51. "eslint-config-ckeditor5": "^1.0.6",
  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",
  73. "test:manual": "node --max_old_space_size=4096 ./node_modules/.bin/ckeditor5-dev-tests-manual",
  74. "docs": "node ./scripts/docs/build-docs.js",
  75. "docs:api": "node ./scripts/docs/build-api-docs.js",
  76. "translations:collect": "ckeditor5-dev-env-translations collect",
  77. "translations:download": "ckeditor5-dev-env-translations download",
  78. "translations:upload": "ckeditor5-dev-env-translations upload",
  79. "changelog": "node ./scripts/release/changelog.js",
  80. "release:dependencies": "node ./scripts/release/release-dependencies.js",
  81. "install-optional-dependencies": "sh ./scripts/install-optional-dependencies.sh",
  82. "switch-to-dev-dev": "sh ./scripts/switch-to-dev-dev.sh",
  83. "build-and-publish-docs": "node ./scripts/docs/build-and-publish.js"
  84. },
  85. "lint-staged": {
  86. "**/*.js": [
  87. "eslint --quiet"
  88. ]
  89. },
  90. "eslintIgnore": [
  91. "build/**",
  92. "coverage/**",
  93. "packages/**"
  94. ]
  95. }