{ "name": "ip-cidr", "version": "4.0.2", "description": "Module for working with CIDR (v4, v6)", "main": "./index.js", "type": "module", "types": "./index.d.ts", "author": { "name": "Alexander Balasyan", "email": "mywebstreet@gmail.com" }, "keywords": [ "ip", "cidr", "range", "from", "to", "array" ], "license": "MIT", "scripts": { "test": "mocha", "build": "browserify ./ip-cidr.js -p esmify > ./dist/ip-cidr.js" }, "husky": { "hooks": { "pre-commit": "npm run test && npm run build && git add ./dist/*" } }, "dependencies": { "ip-address": "^9.0.5" }, "devDependencies": { "browserify": "^17.0.0", "chai": "^4.3.0", "esmify": "^2.1.1", "husky": "^4.2.3", "mocha": "^10.0.0" }, "repository": { "type": "git", "url": "https://github.com/ortexx/ip-cidr" }, "engines": { "node": ">=16.14.0" } }