package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@ckeditor/ckeditor5-cloudservices",
  3. "version": "1.0.0-alpha.1",
  4. "description": "Base package for CKEditor 5' Cloud Services.",
  5. "keywords": [
  6. "ckeditor5"
  7. ],
  8. "dependencies": {
  9. "@ckeditor/ckeditor-cloudservices-core": "^0.2.0",
  10. "@ckeditor/ckeditor5-core": "^1.0.0-alpha.1",
  11. "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.1"
  12. },
  13. "devDependencies": {
  14. "eslint": "^4.8.0",
  15. "eslint-config-ckeditor5": "^1.0.6",
  16. "husky": "^0.14.3",
  17. "lint-staged": "^4.2.3"
  18. },
  19. "engines": {
  20. "node": ">=6.0.0",
  21. "npm": ">=3.0.0"
  22. },
  23. "author": "CKSource (http://cksource.com/)",
  24. "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
  25. "homepage": "https://ckeditor5.github.io",
  26. "bugs": "https://github.com/ckeditor/ckeditor5-cloudservices/issues",
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/ckeditor/ckeditor5-cloudservices.git"
  30. },
  31. "files": [
  32. "src"
  33. ],
  34. "scripts": {
  35. "lint": "eslint --quiet '**/*.js'",
  36. "precommit": "lint-staged"
  37. },
  38. "lint-staged": {
  39. "**/*.js": [
  40. "eslint --quiet"
  41. ]
  42. },
  43. "eslintIgnore": [
  44. "src/lib/**",
  45. "packages/**"
  46. ]
  47. }