get-ip-range
Version:
Simple utility to convert either CIDR notation or two IP addresses to an array of the range of IP addresses
47 lines (46 loc) • 1.07 kB
JSON
{
"name": "get-ip-range",
"version": "4.0.1",
"description": "Simple utility to convert either CIDR notation or two IP addresses to an array of the range of IP addresses",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"prepare": "npm run build",
"lint": "tslint -c tslint.json *.ts"
},
"files": [
"index.ts"
],
"keywords": [
"CIDR",
"IP"
],
"author": "@JoeScho <joeschofield@live.co.uk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoeScho/get-ip-range/issues"
},
"homepage": "https://github.com/JoeScho/get-ip-range#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JoeScho/get-ip-range.git"
},
"devDependencies": {
"@types/ip": "^1.1.0",
"jest": "^26.5.3",
"pre-commit": "^1.2.2",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"pre-commit": [
"test",
"lint"
],
"dependencies": {
"ip": "^1.1.5",
"ip-address": "^6.1.0"
}
}