package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "clipboard-copy",
  3. "description": "Lightweight copy to clipboard for the web",
  4. "version": "4.0.1",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "https://feross.org"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/feross/clipboard-copy/issues"
  12. },
  13. "devDependencies": {
  14. "ecstatic": "^4.1.4",
  15. "standard": "*"
  16. },
  17. "homepage": "https://github.com/feross/clipboard-copy",
  18. "keywords": [
  19. "browser",
  20. "clipboard",
  21. "clipboard copy",
  22. "clipboard.js",
  23. "copy",
  24. "copy to clipboard",
  25. "modern browsers",
  26. "simple"
  27. ],
  28. "license": "MIT",
  29. "main": "index.js",
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/feross/clipboard-copy.git"
  33. },
  34. "scripts": {
  35. "test": "standard",
  36. "test-browser-local": "ecstatic -p 4000 ."
  37. },
  38. "funding": [
  39. {
  40. "type": "github",
  41. "url": "https://github.com/sponsors/feross"
  42. },
  43. {
  44. "type": "patreon",
  45. "url": "https://www.patreon.com/feross"
  46. },
  47. {
  48. "type": "consulting",
  49. "url": "https://feross.org/support"
  50. }
  51. ]
  52. }