package.json 1.7 KB

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