{
  "name": "is-local-address",
  "description": "Static check if a hostname is a local IP address.",
  "homepage": "https://github.com/Kikobeats/is-local-address",
  "version": "2.3.4",
  "types": "src/index.d.ts",
  "exports": {
    ".": "./src/index.js",
    "./ipv4": "./src/ipv4/index.js",
    "./ipv6": "./src/ipv6/index.js"
  },
  "author": {
    "email": "josefrancisco.verdu@gmail.com",
    "name": "Kiko Beats",
    "url": "https://kikobeats.com"
  },
  "contributors": [
    {
      "name": "Steven",
      "email": "steven@ceriously.com"
    },
    {
      "name": "Sukka",
      "email": "github@skk.moe"
    }
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Kikobeats/is-local-address.git"
  },
  "bugs": {
    "url": "https://github.com/Kikobeats/is-local-address/issues"
  },
  "keywords": [
    "check",
    "is",
    "localhost",
    "uri",
    "url"
  ],
  "devDependencies": {
    "@commitlint/cli": "latest",
    "@commitlint/config-conventional": "latest",
    "@ksmithut/prettier-standard": "latest",
    "ava": "latest",
    "c8": "latest",
    "ci-publish": "latest",
    "finepack": "latest",
    "git-authors-cli": "latest",
    "github-generate-release": "latest",
    "nano-staged": "latest",
    "redos-detector": "latest",
    "simple-git-hooks": "latest",
    "standard": "latest",
    "standard-version": "latest",
    "tsd": "latest"
  },
  "engines": {
    "node": ">= 10"
  },
  "files": [
    "src"
  ],
  "scripts": {
    "clean": "rm -rf node_modules",
    "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "lint": "tsd && standard",
    "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
    "pretest": "npm run lint && npm run redos",
    "redos": "npm run redos:ipv4 && npm run redos:ipv6",
    "redos:ipv4": "redos-detector check $(node -e \"console.log(require('is-local-address/ipv4').regex)\")",
    "redos:ipv6": "redos-detector check $(node -e \"console.log(require('is-local-address/ipv6').regex)\")",
    "release": "standard-version -a",
    "release:github": "github-generate-release",
    "release:tags": "git push --follow-tags origin HEAD:master",
    "test": "c8 ava"
  },
  "license": "MIT",
  "ava": {
    "files": [
      "test/**/*.js",
      "!test/cases.js"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "body-max-line-length": [
        0
      ]
    }
  },
  "nano-staged": {
    "*.js": [
      "prettier-standard",
      "standard --fix"
    ],
    "package.json": [
      "finepack"
    ]
  },
  "simple-git-hooks": {
    "commit-msg": "npx commitlint --edit",
    "pre-commit": "npx nano-staged"
  },
  "tsd": {
    "directory": "test"
  }
}
