package.json 908 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "events-universal",
  3. "version": "1.0.1",
  4. "description": "Universal wrapper for the Node.js events module",
  5. "exports": {
  6. "./package": "./package.json",
  7. ".": {
  8. "bare": "./bare.js",
  9. "react-native": "./react-native.js",
  10. "default": "./default.js"
  11. }
  12. },
  13. "files": [
  14. "index.js",
  15. "default.js",
  16. "bare.js",
  17. "react-native.js"
  18. ],
  19. "scripts": {
  20. "test": "prettier . --check"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/holepunchto/events-universal.git"
  25. },
  26. "author": "Holepunch",
  27. "license": "Apache-2.0",
  28. "bugs": {
  29. "url": "https://github.com/holepunchto/events-universal/issues"
  30. },
  31. "homepage": "https://github.com/holepunchto/events-universal#readme",
  32. "dependencies": {
  33. "bare-events": "^2.7.0"
  34. },
  35. "devDependencies": {
  36. "prettier": "^3.4.2",
  37. "prettier-config-holepunch": "^1.0.0"
  38. }
  39. }