{
  "name": "request-ip",
  "version": "2.1.3",
  "description": "A small node.js module to retrieve the request's IP address",
  "keywords": [
    "request ip",
    "ip",
    "address",
    "request",
    "proxy",
    "client",
    "header",
    "X-Client-IP",
    "X-Forwarded-For",
    "CF-Connecting-IP",
    "Fastly-Client-IP",
    "True-Client-IP",
    "X-Real-IP",
    "X-Cluster-Client-IP",
    "X-Forwarded",
    "Forwarded-For",
    "connection.remoteAddress",
    "connection.socket.remoteAddress",
    "req.info.remoteAddress",
    "middleware",
    "ipv4",
    "ipv6"
  ],
  "homepage": "https://github.com/pbojinov/request-ip",
  "bugs": {
    "url": "https://github.com/pbojinov/request-ip/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/pbojinov/request-ip.git"
  },
  "license": "MIT",
  "author": "Petar Bojinov <petarbojinov@gmail.com>",
  "contributors": [
    {
      "name": "Jon Peck",
      "email": "jpeck@fluxsauce.com"
    }
  ],
  "files": [
    "dist"
  ],
  "main": "./dist/index.js",
  "scripts": {
    "build": "babel ./src/index.js > ./dist/index.js",
    "changelog": "github_changelog_generator -u pbojinov -p request-ip",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "test": "nyc --reporter=html --reporter=text --check-coverage --lines=100 --statements=100 tape ./test/index.js"
  },
  "dependencies": {
    "is_js": "^0.9.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0-beta.51",
    "@babel/core": "^7.0.0-beta.51",
    "@babel/preset-env": "^7.0.0-beta.51",
    "coveralls": "^3.0.2",
    "eslint": "^5.8.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-plugin-import": "^2.2.0",
    "nyc": "^13.1.0",
    "request": "^2.54.0",
    "tap-spec": "^5.0.0",
    "tape": "^4.9.1"
  }
}
