The LM Control website. Simple yet efficient.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "forwarded",
  3. "description": "Parse HTTP X-Forwarded-For header",
  4. "version": "0.2.0",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  7. ],
  8. "license": "MIT",
  9. "keywords": [
  10. "x-forwarded-for",
  11. "http",
  12. "req"
  13. ],
  14. "repository": "jshttp/forwarded",
  15. "devDependencies": {
  16. "beautify-benchmark": "0.2.4",
  17. "benchmark": "2.1.4",
  18. "deep-equal": "1.0.1",
  19. "eslint": "7.27.0",
  20. "eslint-config-standard": "14.1.1",
  21. "eslint-plugin-import": "2.23.4",
  22. "eslint-plugin-node": "11.1.0",
  23. "eslint-plugin-promise": "4.3.1",
  24. "eslint-plugin-standard": "4.1.0",
  25. "mocha": "8.4.0",
  26. "nyc": "15.1.0"
  27. },
  28. "files": [
  29. "LICENSE",
  30. "HISTORY.md",
  31. "README.md",
  32. "index.js"
  33. ],
  34. "engines": {
  35. "node": ">= 0.6"
  36. },
  37. "scripts": {
  38. "bench": "node benchmark/index.js",
  39. "lint": "eslint .",
  40. "test": "mocha --reporter spec --bail --check-leaks test/",
  41. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  42. "test-cov": "nyc --reporter=html --reporter=text npm test",
  43. "version": "node scripts/version-history.js && git add HISTORY.md"
  44. }
  45. }