package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "eventemitter2",
  3. "version": "5.0.1",
  4. "description": "A Node.js event emitter implementation with namespaces, wildcards, TTL and browser support.",
  5. "keywords": [
  6. "event",
  7. "events",
  8. "emitter",
  9. "eventemitter"
  10. ],
  11. "author": "hij1nx <paolo@async.ly> http://twitter.com/hij1nx",
  12. "contributors": [
  13. "Eric Elliott",
  14. "Charlie Robbins <charlie@nodejitsu.com> http://twitter.com/indexzero",
  15. "Jameson Lee <jameson@nodejitsu.com> http://twitter.com/Jamesonjlee",
  16. "Jeroen van Duffelen <jvduf@nodejitsu.com> http://www.twitter.com/jvduf",
  17. "Fedor Indutny <fedor.indutny@gmail.com> http://www.twitter.com/indutny"
  18. ],
  19. "license": "MIT",
  20. "repository": "git://github.com/hij1nx/EventEmitter2.git",
  21. "devDependencies": {
  22. "benchmark": ">= 0.2.2",
  23. "nodeunit": "*",
  24. "nyc": "^11.4.1"
  25. },
  26. "main": "./lib/eventemitter2.js",
  27. "scripts": {
  28. "test": "nodeunit test/simple/ test/wildcardEvents/",
  29. "coverage": "nyc --check-coverage npm run test",
  30. "benchmark": "node --reporter test/perf/benchmark.js"
  31. },
  32. "files": [
  33. "lib/eventemitter2.js",
  34. "index.js",
  35. "eventemitter2.d.ts"
  36. ],
  37. "typings": "./eventemitter2.d.ts",
  38. "typescript": {
  39. "definition": "./eventemitter2.d.ts"
  40. },
  41. "nyc": {
  42. "lines": 83,
  43. "functions": 84,
  44. "branches": 79,
  45. "statements": 83,
  46. "watermarks": {
  47. "lines": [
  48. 80,
  49. 95
  50. ],
  51. "functions": [
  52. 80,
  53. 95
  54. ],
  55. "branches": [
  56. 80,
  57. 95
  58. ],
  59. "statements": [
  60. 80,
  61. 95
  62. ]
  63. },
  64. "reporter": [
  65. "lcov",
  66. "text-summary"
  67. ]
  68. }
  69. }