package.json 859 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "ee-first",
  3. "description": "return the first event in a set of ee/event pairs",
  4. "version": "1.1.1",
  5. "author": {
  6. "name": "Jonathan Ong",
  7. "email": "me@jongleberry.com",
  8. "url": "http://jongleberry.com",
  9. "twitter": "https://twitter.com/jongleberry"
  10. },
  11. "contributors": [
  12. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  13. ],
  14. "license": "MIT",
  15. "repository": "jonathanong/ee-first",
  16. "devDependencies": {
  17. "istanbul": "0.3.9",
  18. "mocha": "2.2.5"
  19. },
  20. "files": [
  21. "index.js",
  22. "LICENSE"
  23. ],
  24. "scripts": {
  25. "test": "mocha --reporter spec --bail --check-leaks test/",
  26. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  27. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  28. }
  29. }