@apiverve/ipblacklistlookup 1.0.3 → 1.1.4

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/README.md +4 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  IP Blacklist Lookup API
2
2
  ============
3
3
 
4
- IP Blacklist Lookup is a simple tool for looking up if an IP address is in a blacklist. It returns the blacklist name and the reason for the blacklist.
4
+ IP Blacklist Lookup is a simple tool for looking up if an IP address is in a blacklist. It returns if the IP is found in a blacklist.
5
5
 
6
6
  ![Build Status](https://img.shields.io/badge/build-passing-green)
7
7
  ![Code Climate](https://img.shields.io/badge/maintainability-B-purple)
@@ -76,14 +76,15 @@ api.execute(query, function (error, data) {
76
76
  "ipDetails": {
77
77
  "range": [
78
78
  3373776896,
79
- 3373778943
79
+ 3373785087
80
80
  ],
81
81
  "country": "BR",
82
82
  "region": "",
83
83
  "timezone": "America/Sao_Paulo"
84
84
  },
85
85
  "parsed": true
86
- }
86
+ },
87
+ "code": 200
87
88
  }
88
89
  ```
89
90
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apiverve/ipblacklistlookup",
3
- "version": "1.0.3",
4
- "description": "IP Blacklist Lookup is a simple tool for looking up if an IP address is in a blacklist. It returns the blacklist name and the reason for the blacklist.",
3
+ "version": "1.1.4",
4
+ "description": "IP Blacklist Lookup is a simple tool for looking up if an IP address is in a blacklist. It returns if the IP is found in a blacklist.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "mocha"
@@ -18,15 +18,15 @@
18
18
  "bugs": {
19
19
  "url": "https://github.com/apiverve/ipblacklistlookup-API/issues"
20
20
  },
21
- "homepage": "https://github.com/apiverve/ipblacklistlookup-API",
21
+ "homepage": "https://apiverve.com/marketplace/api/ipblacklistlookup",
22
22
  "devDependencies": {
23
- "mocha": "^10.4.0",
23
+ "mocha": "^10.7.3",
24
24
  "chai": "^5.1.1",
25
25
  "dotenv": "^16.4.5"
26
26
  },
27
27
  "dependencies": {
28
- "node-fetch": "3.3.2",
28
+ "node-fetch": "^3.3.2",
29
29
  "promise": "^8.3.0",
30
- "axios": "1.6.8"
30
+ "axios": "1.7.4"
31
31
  }
32
32
  }