package.json 859 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "events",
  3. "version": "3.3.0",
  4. "description": "Node's event emitter for all engines.",
  5. "keywords": [
  6. "events",
  7. "eventEmitter",
  8. "eventDispatcher",
  9. "listeners"
  10. ],
  11. "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/Gozala/events.git",
  15. "web": "https://github.com/Gozala/events"
  16. },
  17. "bugs": {
  18. "url": "http://github.com/Gozala/events/issues/"
  19. },
  20. "main": "./events.js",
  21. "engines": {
  22. "node": ">=0.8.x"
  23. },
  24. "devDependencies": {
  25. "airtap": "^1.0.0",
  26. "functions-have-names": "^1.2.1",
  27. "has": "^1.0.3",
  28. "has-symbols": "^1.0.1",
  29. "isarray": "^2.0.5",
  30. "tape": "^5.0.0"
  31. },
  32. "scripts": {
  33. "test": "node tests/index.js",
  34. "test:browsers": "airtap -- tests/index.js"
  35. },
  36. "license": "MIT"
  37. }