@k03mad/ip2geo 10.4.0 β 11.0.0
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.
- package/.nvmrc +1 -1
- package/package.json +6 -6
- package/tests/shared/consts.js +3 -3
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
22
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k03mad/ip2geo",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0",
|
|
4
4
|
"description": "GeoIP library",
|
|
5
5
|
"maintainers": [
|
|
6
6
|
"Kirill Molchanov <k03.mad@gmail.com"
|
|
@@ -16,20 +16,20 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"type": "module",
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=22"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@k03mad/request": "6.
|
|
22
|
+
"@k03mad/request": "6.4.0",
|
|
23
23
|
"@k03mad/simple-log": "4.2.0",
|
|
24
24
|
"chalk": "5.3.0",
|
|
25
25
|
"debug": "4.3.7",
|
|
26
26
|
"is-ip": "5.0.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@k03mad/eslint-config": "25.6.
|
|
30
|
-
"eslint": "8.57.
|
|
29
|
+
"@k03mad/eslint-config": "25.6.4",
|
|
30
|
+
"eslint": "8.57.1",
|
|
31
31
|
"husky": "9.1.6",
|
|
32
|
-
"mocha": "10.
|
|
32
|
+
"mocha": "10.8.2",
|
|
33
33
|
"npm-run-all": "4.1.5"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
package/tests/shared/consts.js
CHANGED
|
@@ -5,9 +5,9 @@ export const REQUEST_IPV4 = {
|
|
|
5
5
|
country: 'United States',
|
|
6
6
|
countryCode: 'US',
|
|
7
7
|
countryEmoji: 'πΊπΈ',
|
|
8
|
-
region: '
|
|
9
|
-
regionCode: '
|
|
10
|
-
city: '
|
|
8
|
+
region: 'Virginia',
|
|
9
|
+
regionCode: 'VA',
|
|
10
|
+
city: 'Ashburn',
|
|
11
11
|
connectionAsn: 15_169,
|
|
12
12
|
connectionOrg: 'Google LLC',
|
|
13
13
|
connectionIsp: 'Google LLC',
|