8
0

package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@ckeditor/ckeditor5-editor-inline",
  3. "version": "1.0.0-alpha.1",
  4. "description": "Inline editor implementation for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor5",
  7. "ckeditor5-editor"
  8. ],
  9. "dependencies": {
  10. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.1",
  11. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.1",
  12. "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.1",
  13. "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.1",
  14. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.1"
  15. },
  16. "devDependencies": {
  17. "@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.1",
  18. "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.1",
  19. "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.1",
  20. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.1",
  21. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.1",
  22. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.1",
  23. "eslint-config-ckeditor5": "^1.0.6",
  24. "husky": "^0.14.3",
  25. "lint-staged": "^4.2.3"
  26. },
  27. "engines": {
  28. "node": ">=6.0.0",
  29. "npm": ">=3.0.0"
  30. },
  31. "author": "CKSource (http://cksource.com/)",
  32. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  33. "homepage": "https://ckeditor5.github.io",
  34. "bugs": "https://github.com/ckeditor/ckeditor5-editor-inline/issues",
  35. "repository": {
  36. "type": "git",
  37. "url": "https://github.com/ckeditor/ckeditor5-editor-inline.git"
  38. },
  39. "files": [
  40. "lang",
  41. "src",
  42. "theme"
  43. ],
  44. "scripts": {
  45. "lint": "eslint --quiet '**/*.js'",
  46. "precommit": "lint-staged"
  47. },
  48. "lint-staged": {
  49. "**/*.js": [
  50. "eslint --quiet"
  51. ]
  52. }
  53. }