8
0

package.json 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "husky": "^0.14.3",
  52. "lint-staged": "^4.2.3",
  53. "lerna": "^2.2.0",
  54. "mgit2": "^0.7.2"
  55. },
  56. "engines": {
  57. "node": ">=6.0.0",
  58. "npm": ">=3.0.0"
  59. },
  60. "author": "CKSource (http://cksource.com/)",
  61. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  62. "homepage": "http://ckeditor.com",
  63. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  64. "repository": {
  65. "type": "git",
  66. "url": "https://github.com/ckeditor/ckeditor5.git"
  67. },
  68. "scripts": {
  69. "lint": "eslint --quiet '**/*.js'",
  70. "precommit": "lint-staged",
  71. "test": "node --max_old_space_size=4096 ./node_modules/.bin/ckeditor5-dev-tests",
  72. "test:manual": "node --max_old_space_size=4096 ./node_modules/.bin/ckeditor5-dev-tests-manual",
  73. "docs": "./scripts/docs/build-docs.js",
  74. "docs:api": "./scripts/docs/build-api-docs.js",
  75. "translations:collect": "ckeditor5-dev-env-translations collect",
  76. "translations:download": "ckeditor5-dev-env-translations download",
  77. "translations:upload": "ckeditor5-dev-env-translations upload",
  78. "changelog:dependencies": "./scripts/release/changelog-dependencies.js",
  79. "release:dependencies": "./scripts/release/release-dependencies.js",
  80. "install-optional-dependencies": "./scripts/install-optional-dependencies.sh",
  81. "switch-to-dev-dev": "./scripts/switch-to-dev-dev.sh",
  82. "build-and-publish-docs": "./scripts/docs/build-and-publish.js"
  83. },
  84. "lint-staged": {
  85. "**/*.js": [
  86. "eslint --quiet"
  87. ]
  88. },
  89. "eslintIgnore": [
  90. "build/**",
  91. "coverage/**",
  92. "packages/**"
  93. ]
  94. }