package.json 983 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "proxy-addr",
  3. "description": "Determine address of proxied request",
  4. "version": "1.1.5",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "keywords": [
  8. "ip",
  9. "proxy",
  10. "x-forwarded-for"
  11. ],
  12. "repository": "jshttp/proxy-addr",
  13. "dependencies": {
  14. "forwarded": "~0.1.0",
  15. "ipaddr.js": "1.4.0"
  16. },
  17. "devDependencies": {
  18. "benchmark": "2.1.4",
  19. "beautify-benchmark": "0.2.4",
  20. "istanbul": "0.4.5",
  21. "mocha": "~1.21.5"
  22. },
  23. "files": [
  24. "LICENSE",
  25. "HISTORY.md",
  26. "README.md",
  27. "index.js"
  28. ],
  29. "engines": {
  30. "node": ">= 0.6"
  31. },
  32. "scripts": {
  33. "bench": "node benchmark/index.js",
  34. "test": "mocha --reporter spec --bail --check-leaks test/",
  35. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  36. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  37. }
  38. }