cidr-tools 5.0.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -3,7 +3,7 @@ import ipRegex from "ip-regex";
3
3
  import isCidr from "is-cidr";
4
4
  import ipv6Normalize from "ipv6-normalize";
5
5
  import naturalCompare from "string-natural-compare";
6
- import {stringify as stringifyIp} from "ip-bigint";
6
+ import {stringifyIp} from "ip-bigint";
7
7
  import {BigInteger} from "jsbn";
8
8
 
9
9
  const bits = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cidr-tools",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "author": "silverwind <me@silverwind.io>",
5
5
  "description": "Tools to work with IPv4 and IPv6 CIDR network lists",
6
6
  "repository": "silverwind/cidr-tools",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "types": "./index.d.ts",
29
29
  "dependencies": {
30
- "ip-bigint": "3.0.3",
30
+ "ip-bigint": "4.0.0",
31
31
  "ip-cidr": "^3.0.10",
32
32
  "ip-regex": "5.0.0",
33
33
  "ipv6-normalize": "^1.0.1",