package.json 889 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@szmarczak/http-timer",
  3. "version": "1.1.2",
  4. "description": "Timings for HTTP requests",
  5. "main": "source",
  6. "engines": {
  7. "node": ">=6"
  8. },
  9. "scripts": {
  10. "test": "xo && nyc ava",
  11. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  12. },
  13. "files": [
  14. "source"
  15. ],
  16. "keywords": [
  17. "http",
  18. "https",
  19. "timer",
  20. "timings"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/szmarczak/http-timer.git"
  25. },
  26. "author": "Szymon Marczak",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/szmarczak/http-timer/issues"
  30. },
  31. "homepage": "https://github.com/szmarczak/http-timer#readme",
  32. "xo": {
  33. "rules": {
  34. "unicorn/filename-case": "camelCase"
  35. }
  36. },
  37. "devDependencies": {
  38. "ava": "^0.25.0",
  39. "coveralls": "^3.0.2",
  40. "p-event": "^2.1.0",
  41. "nyc": "^12.0.2",
  42. "xo": "^0.22.0"
  43. },
  44. "dependencies": {
  45. "defer-to-connect": "^1.0.1"
  46. }
  47. }