8
0

package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@ckeditor/ckeditor5-utils",
  3. "version": "1.0.0-beta.2",
  4. "description": "Miscellaneous utils used by CKEditor 5.",
  5. "keywords": [
  6. "ckeditor",
  7. "ckeditor5",
  8. "ckeditor5-lib"
  9. ],
  10. "devDependencies": {
  11. "@ckeditor/ckeditor5-core": "^1.0.0-beta.2",
  12. "@ckeditor/ckeditor5-engine": "^1.0.0-beta.2",
  13. "del": "^2.2.0",
  14. "eslint": "^4.15.0",
  15. "eslint-config-ckeditor5": "^1.0.7",
  16. "husky": "^0.14.3",
  17. "lint-staged": "^7.0.0",
  18. "lodash-cli": "^4"
  19. },
  20. "engines": {
  21. "node": ">=6.0.0",
  22. "npm": ">=3.0.0"
  23. },
  24. "author": "CKSource (http://cksource.com/)",
  25. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  26. "homepage": "https://ckeditor.com",
  27. "bugs": "https://github.com/ckeditor/ckeditor5-utils/issues",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/ckeditor/ckeditor5-utils.git"
  31. },
  32. "files": [
  33. "lang",
  34. "src",
  35. "theme"
  36. ],
  37. "scripts": {
  38. "lint": "eslint --quiet '**/*.js'",
  39. "precommit": "lint-staged"
  40. },
  41. "lint-staged": {
  42. "**/*.js": [
  43. "eslint --quiet"
  44. ]
  45. },
  46. "eslintIgnore": [
  47. "src/lib/**",
  48. "packages/**"
  49. ]
  50. }