package.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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-font": "^0.0.1",
  35. "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.2",
  36. "@ckeditor/ckeditor5-image": "^1.0.0-alpha.2",
  37. "@ckeditor/ckeditor5-link": "^1.0.0-alpha.2",
  38. "@ckeditor/ckeditor5-list": "^1.0.0-alpha.2",
  39. "@ckeditor/ckeditor5-markdown-gfm": "^1.0.0-alpha.2",
  40. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2",
  41. "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.2",
  42. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.2",
  43. "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.2",
  44. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.2",
  45. "@ckeditor/ckeditor5-upload": "^1.0.0-alpha.2",
  46. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.2",
  47. "@ckeditor/ckeditor5-widget": "^1.0.0-alpha.2"
  48. },
  49. "devDependencies": {
  50. "@ckeditor/ckeditor5-dev-docs": "^8.0.0",
  51. "@ckeditor/ckeditor5-dev-env": "^8.0.4",
  52. "@ckeditor/ckeditor5-dev-tests": "^10.2.0",
  53. "@ckeditor/ckeditor5-dev-utils": "^7.0.3",
  54. "@ckeditor/ckeditor5-dev-webpack-plugin": "^3.0.4",
  55. "babel-minify-webpack-plugin": "^0.2.0",
  56. "eslint": "^4.15.0",
  57. "eslint-config-ckeditor5": "^1.0.7",
  58. "extract-text-webpack-plugin": "^3.0.2",
  59. "glob": "^7.1.2",
  60. "husky": "^0.14.3",
  61. "lerna": "^2.2.0",
  62. "lint-staged": "^6.0.0",
  63. "mgit2": "^0.7.2",
  64. "minimatch": "^3.0.4",
  65. "postcss-loader": "^2.0.10",
  66. "raw-loader": "^0.5.1",
  67. "style-loader": "^0.19.1",
  68. "umberto": "^0.3.48",
  69. "webpack": "^3.10.0",
  70. "webpack-sources": "1.0.1"
  71. },
  72. "engines": {
  73. "node": ">=6.0.0",
  74. "npm": ">=3.0.0"
  75. },
  76. "author": "CKSource (http://cksource.com/)",
  77. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  78. "homepage": "http://ckeditor.com",
  79. "bugs": "https://github.com/ckeditor/ckeditor5/issues",
  80. "repository": {
  81. "type": "git",
  82. "url": "https://github.com/ckeditor/ckeditor5.git"
  83. },
  84. "scripts": {
  85. "lint": "eslint --quiet '**/*.js'",
  86. "precommit": "lint-staged",
  87. "test": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test.js",
  88. "test:manual": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test-manual.js",
  89. "docs": "node ./scripts/docs/build-docs.js",
  90. "docs:api": "node ./scripts/docs/build-api-docs.js",
  91. "docs:build-and-publish": "node ./scripts/docs/build-and-publish.js",
  92. "docs:build-and-publish-nightly": "node ./scripts/docs/build-and-publish-nightly.js",
  93. "translations:collect": "ckeditor5-dev-env-translations collect",
  94. "translations:download": "ckeditor5-dev-env-translations download",
  95. "translations:upload": "ckeditor5-dev-env-translations upload",
  96. "changelog": "node ./scripts/release/changelog.js",
  97. "release:dependencies": "node ./scripts/release/release-dependencies.js",
  98. "switch-to-dev-dev": "sh ./scripts/switch-to-dev-dev.sh"
  99. },
  100. "lint-staged": {
  101. "**/*.js": [
  102. "eslint --quiet"
  103. ]
  104. },
  105. "eslintIgnore": [
  106. "build/**",
  107. "coverage/**",
  108. "packages/**"
  109. ]
  110. }