package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.2",
  11. "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.2"
  12. },
  13. "devDependencies": {
  14. "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.2",
  15. "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2",
  16. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.2",
  17. "eslint": "^4.15.0",
  18. "eslint-config-ckeditor5": "^1.0.7",
  19. "husky": "^0.14.3",
  20. "lint-staged": "^6.0.0"
  21. },
  22. "engines": {
  23. "node": ">=6.0.0",
  24. "npm": ">=3.0.0"
  25. },
  26. "author": "CKSource (http://cksource.com/)",
  27. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  28. "homepage": "https://ckeditor5.github.io",
  29. "bugs": "https://github.com/ckeditor/ckeditor5-table/issues",
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/ckeditor/ckeditor5-table.git"
  33. },
  34. "files": [
  35. "lang",
  36. "src",
  37. "theme"
  38. ],
  39. "scripts": {
  40. "lint": "eslint --quiet '**/*.js'",
  41. "precommit": "lint-staged"
  42. },
  43. "lint-staged": {
  44. "**/*.js": [
  45. "eslint --quiet"
  46. ]
  47. },
  48. "eslintIgnore": [
  49. "src/lib/**",
  50. "packages/**"
  51. ]
  52. }