{
  "name": "netparser",
  "version": "1.9.0",
  "description": "parse and manipulate network addresses",
  "main": "lib/index.js",
  "scripts": {
    "build": "tsc && jest --coverage",
    "test": "tsc --noEmit && jest --coverage",
    "bench": "npm run bench-index && npm run bench-match",
    "bench-index": "ts-node -T src/benchmarks/index.bench.ts",
    "bench-match": "ts-node -T src/benchmarks/match.bench.ts",
    "bench-sort": "ts-node -T src/benchmarks/sort.bench.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/demskie/netparser.git"
  },
  "files": [
    "lib/**/*"
  ],
  "keywords": [
    "subnet",
    "network",
    "ip",
    "ipv4",
    "ipv6",
    "cidr",
    "address",
    "sort"
  ],
  "author": "Alex Demskie",
  "license": "MIT",
  "homepage": "https://github.com/demskie/netparser#readme",
  "bugs": {
    "url": "https://github.com/demskie/netparser/issues"
  },
  "typings": "lib/index.d.ts",
  "jest": {
    "roots": [
      "<rootDir>/src"
    ],
    "transform": {
      "^.+\\.(ts|tsx)$": "ts-jest"
    },
    "testRegex": [
      ".*.test\\.ts"
    ],
    "moduleFileExtensions": [
      "ts",
      "js",
      "json",
      "node"
    ],
    "globals": {
      "ts-jest": {
        "tsConfig": "tsconfig.json",
        "diagnostics": false
      }
    },
    "testPathIgnorePatterns": [
      "<rootDir>/node_modules/",
      "<rootDir>/config/",
      "<rootDir>/build/",
      "<rootDir>/src/mockdata/",
      "<rootDir>/src/benchmarks/"
    ],
    "collectCoverage": false,
    "collectCoverageFrom": [
      "!**/tests/**",
      "!**/benchmarks/**",
      "!**/*.bench.ts",
      "!**/*.mock.ts",
      "!**/node_modules/**",
      "!**/vendor/**",
      "**/*.ts"
    ]
  },
  "devDependencies": {
    "@types/jest": "^24.9.1",
    "@types/node": "^12.20.19",
    "@typescript-eslint/eslint-plugin": "^2.34.0",
    "@typescript-eslint/parser": "^2.34.0",
    "coveralls": "^3.1.1",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.15.0",
    "eslint-plugin-prettier": "^3.4.0",
    "jest": "^24.9.0",
    "prettier": "^1.19.1",
    "ts-jest": "^24.3.0",
    "ts-node": "^8.10.2",
    "typedoc": "^0.15.8",
    "typedoc-plugin-markdown": "^2.4.2",
    "typescript": "^3.9.10",
    "@types/benchmark": "^2.1.1",
    "@types/netmask": "^1.0.30",
    "benchmark": "^2.1.4",
    "cidr-matcher": "^2.1.1",
    "ip-address": "^8.1.0",
    "ipaddr.js": "^2.0.1",
    "netmask": "^2.0.2"
  },
  "dependencies": {}
}
