maxmind 2.11.2 → 2.12.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/.github/main.workflow +16 -0
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/package.json +6 -6
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
workflow "New workflow" {
|
|
2
|
+
on = "push"
|
|
3
|
+
resolves = ["Deps", "Lint"]
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
action "Deps" {
|
|
7
|
+
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
|
|
8
|
+
runs = "npm install"
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
action "Lint" {
|
|
12
|
+
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
|
|
13
|
+
runs = "npm run lint"
|
|
14
|
+
needs = "Deps"
|
|
15
|
+
}
|
|
16
|
+
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@ node-maxmind [ than other libraries. Module has 100% test coverage with comprehensive test suite. It natively works with binary Maxmind database format and doesn't require any "CSV - {specific lib format}" conversions as some other modules do. Maxmind binary databases are highly optimized for size and performance so there's no point
|
|
5
|
+
Vanilla Javascript module for Geo IP lookup using Maxmind binary databases (aka mmdb or geoip2).
|
|
6
|
+
Fastest Maxmind lookup library available - up to [17,000% faster](https://github.com/runk/node-maxmind-benchmark) than other libraries. Module has 100% test coverage with comprehensive test suite. It natively works with binary Maxmind database format and doesn't require any "CSV - {specific lib format}" conversions as some other modules do. Maxmind binary databases are highly optimized for size and performance so there's no point using other formats.
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
## GEO databases
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maxmind",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"homepage": "https://github.com/runk/node-maxmind",
|
|
5
5
|
"description": "IP lookup using Maxmind databases",
|
|
6
6
|
"keywords": [
|
|
@@ -24,19 +24,19 @@
|
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"big-integer": "^1.6.31",
|
|
27
|
-
"tiny-lru": "^
|
|
27
|
+
"tiny-lru": "^6.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@types/node": "10.12.
|
|
30
|
+
"@types/node": "10.12.20",
|
|
31
31
|
"eslint": "2.13.1",
|
|
32
32
|
"github-publish-release": "5.0.1",
|
|
33
33
|
"ip-address": "5.8.9",
|
|
34
34
|
"istanbul": "0.4.5",
|
|
35
35
|
"mocha": "5.2.0",
|
|
36
36
|
"nyc": "13.1.0",
|
|
37
|
-
"sinon": "7.2.
|
|
38
|
-
"tslint": "5.12.
|
|
39
|
-
"typescript": "3.
|
|
37
|
+
"sinon": "7.2.3",
|
|
38
|
+
"tslint": "5.12.1",
|
|
39
|
+
"typescript": "3.3.1"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|