8
0

package.json 1.6 KB

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