package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "proxy-addr",
  3. "description": "Determine address of proxied request",
  4. "version": "2.0.4",
  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.2",
  15. "ipaddr.js": "1.8.0"
  16. },
  17. "devDependencies": {
  18. "benchmark": "2.1.4",
  19. "beautify-benchmark": "0.2.4",
  20. "eslint": "4.19.1",
  21. "eslint-config-standard": "11.0.0",
  22. "eslint-plugin-import": "2.13.0",
  23. "eslint-plugin-markdown": "1.0.0-beta.6",
  24. "eslint-plugin-node": "6.0.1",
  25. "eslint-plugin-promise": "3.8.0",
  26. "eslint-plugin-standard": "3.1.0",
  27. "mocha": "3.5.3",
  28. "nyc": "10.3.2"
  29. },
  30. "files": [
  31. "LICENSE",
  32. "HISTORY.md",
  33. "README.md",
  34. "index.js"
  35. ],
  36. "engines": {
  37. "node": ">= 0.10"
  38. },
  39. "scripts": {
  40. "bench": "node benchmark/index.js",
  41. "lint": "eslint --plugin markdown --ext js,md .",
  42. "test": "mocha --reporter spec --bail --check-leaks test/",
  43. "test-cov": "nyc --reporter=text npm test",
  44. "test-travis": "nyc --reporter=html --reporter=text npm test"
  45. }
  46. }