package.json 876 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@ckeditor/ckeditor5-table",
  3. "version": "0.0.1",
  4. "description": "Table feature for CKEditor 5.",
  5. "keywords": [
  6. "ckeditor5",
  7. "ckeditor5-feature"
  8. ],
  9. "dependencies": {
  10. },
  11. "devDependencies": {
  12. },
  13. "engines": {
  14. "node": ">=6.0.0",
  15. "npm": ">=3.0.0"
  16. },
  17. "author": "CKSource (http://cksource.com/)",
  18. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  19. "homepage": "https://ckeditor5.github.io",
  20. "bugs": "https://github.com/ckeditor/ckeditor5-table/issues",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/ckeditor/ckeditor5-table.git"
  24. },
  25. "files": [
  26. "lang",
  27. "src",
  28. "theme"
  29. ],
  30. "scripts": {
  31. "lint": "eslint --quiet '**/*.js'",
  32. "precommit": "lint-staged"
  33. },
  34. "lint-staged": {
  35. "**/*.js": [
  36. "eslint --quiet"
  37. ]
  38. },
  39. "eslintIgnore": [
  40. "src/lib/**",
  41. "packages/**"
  42. ]
  43. }