package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "copy-to-clipboard",
  3. "version": "3.3.3",
  4. "description": "Copy stuff into clipboard using JS with fallbacks",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "pretest": "browserify ./index.js --standalone copyToClipboard | uglifyjs -cm > example/index.js",
  9. "test": "nightwatch"
  10. },
  11. "keywords": [
  12. "clipboard",
  13. "copy",
  14. "browser"
  15. ],
  16. "author": "sudodoki <smd.deluzion@gmail.com>",
  17. "license": "MIT",
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/sudodoki/copy-to-clipboard"
  21. },
  22. "contributors": [
  23. {
  24. "name": "Aleksej Shvajka",
  25. "url": "https://github.com/shvaikalesh"
  26. }
  27. ],
  28. "dependencies": {
  29. "toggle-selection": "^1.0.6"
  30. },
  31. "directories": {
  32. "example": "example"
  33. },
  34. "devDependencies": {
  35. "browserify": "^13.0.1",
  36. "minimist": "^1.2.6",
  37. "nightwatch": "^2.3.0",
  38. "@brettz9/node-static": "^0.1.1",
  39. "optimist": "^0.5.2",
  40. "selenium-server-standalone-jar": "2.53.0",
  41. "uglify-js": "^3.5.3"
  42. }
  43. }