package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "proxy-addr",
  3. "description": "Determine address of proxied request",
  4. "version": "2.0.7",
  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.2.0",
  15. "ipaddr.js": "1.9.1"
  16. },
  17. "devDependencies": {
  18. "benchmark": "2.1.4",
  19. "beautify-benchmark": "0.2.4",
  20. "deep-equal": "1.0.1",
  21. "eslint": "7.26.0",
  22. "eslint-config-standard": "14.1.1",
  23. "eslint-plugin-import": "2.23.4",
  24. "eslint-plugin-markdown": "2.2.0",
  25. "eslint-plugin-node": "11.1.0",
  26. "eslint-plugin-promise": "4.3.1",
  27. "eslint-plugin-standard": "4.1.0",
  28. "mocha": "8.4.0",
  29. "nyc": "15.1.0"
  30. },
  31. "files": [
  32. "LICENSE",
  33. "HISTORY.md",
  34. "README.md",
  35. "index.js"
  36. ],
  37. "engines": {
  38. "node": ">= 0.10"
  39. },
  40. "scripts": {
  41. "bench": "node benchmark/index.js",
  42. "lint": "eslint .",
  43. "test": "mocha --reporter spec --bail --check-leaks test/",
  44. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  45. "test-cov": "nyc --reporter=html --reporter=text npm test"
  46. }
  47. }