package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@ckeditor/ckeditor5-list",
  3. "version": "1.0.0-alpha.1",
  4. "description": "Ordered and unordered lists feature to CKEditor 5.",
  5. "keywords": [
  6. "ckeditor5",
  7. "ckeditor5-feature"
  8. ],
  9. "dependencies": {
  10. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.1",
  11. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.1",
  12. "@ckeditor/ckeditor5-core": "^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-block-quote": "^1.0.0-alpha.1",
  19. "@ckeditor/ckeditor5-clipboard": "^1.0.0-alpha.1",
  20. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.1",
  21. "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.1",
  22. "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.1",
  23. "@ckeditor/ckeditor5-link": "^1.0.0-alpha.1",
  24. "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.1",
  25. "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.1",
  26. "eslint-config-ckeditor5": "^1.0.6",
  27. "husky": "^0.14.3",
  28. "lint-staged": "^4.2.3"
  29. },
  30. "engines": {
  31. "node": ">=6.0.0",
  32. "npm": ">=3.0.0"
  33. },
  34. "author": "CKSource (http://cksource.com/)",
  35. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  36. "homepage": "https://ckeditor5.github.io",
  37. "bugs": "https://github.com/ckeditor/ckeditor5-list/issues",
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/ckeditor/ckeditor5-list.git"
  41. },
  42. "files": [
  43. "lang",
  44. "src",
  45. "theme"
  46. ],
  47. "scripts": {
  48. "lint": "eslint --quiet '**/*.js'",
  49. "precommit": "lint-staged"
  50. },
  51. "lint-staged": {
  52. "**/*.js": [
  53. "eslint --quiet"
  54. ]
  55. },
  56. "eslintIgnore": [ "src/lib/**" ]
  57. }