@apiverve/phonenumbervalidator 1.1.2 → 1.1.5

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 +5 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Phone Validator API
1
+ Phone Number Validator API
2
2
  ============
3
3
 
4
4
  Phone Number Validator is a simple tool for validating if a phone number is valid or not. It checks the phone number format and the country code to see if the phone number is valid.
@@ -7,7 +7,7 @@ Phone Number Validator is a simple tool for validating if a phone number is vali
7
7
  ![Code Climate](https://img.shields.io/badge/maintainability-B-purple)
8
8
  ![Prod Ready](https://img.shields.io/badge/production-ready-blue)
9
9
 
10
- This is a Javascript Wrapper for the [Phone Validator API](https://apiverve.com/marketplace/api/phonenumbervalidator)
10
+ This is a Javascript Wrapper for the [Phone Number Validator API](https://apiverve.com/marketplace/api/phonenumbervalidator)
11
11
 
12
12
  ---
13
13
 
@@ -25,7 +25,7 @@ You can get it by signing up at [https://apiverve.com](https://apiverve.com)
25
25
 
26
26
  ## Usage
27
27
 
28
- The Phone Validator API documentation is found here: [https://docs.apiverve.com/api/phonenumbervalidator](https://docs.apiverve.com/api/phonenumbervalidator).
28
+ The Phone Number Validator API documentation is found here: [https://docs.apiverve.com/api/phonenumbervalidator](https://docs.apiverve.com/api/phonenumbervalidator).
29
29
  You can find parameters, example responses, and status codes documented here.
30
30
 
31
31
  ### Setup
@@ -85,7 +85,8 @@ api.execute(query, function (error, data) {
85
85
  "rfc": "tel:+1-816-555-1017",
86
86
  "e164": "+18165551017"
87
87
  }
88
- }
88
+ },
89
+ "code": 200
89
90
  }
90
91
  ```
91
92
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apiverve/phonenumbervalidator",
3
- "version": "1.1.2",
3
+ "version": "1.1.5",
4
4
  "description": "Phone Number Validator is a simple tool for validating if a phone number is valid or not. It checks the phone number format and the country code to see if the phone number is valid.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,15 +18,15 @@
18
18
  "bugs": {
19
19
  "url": "https://github.com/apiverve/phonenumbervalidator-API/issues"
20
20
  },
21
- "homepage": "https://github.com/apiverve/phonenumbervalidator-API",
21
+ "homepage": "https://apiverve.com/marketplace/api/phonenumbervalidator?utm_source=npm",
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.7"
31
31
  }
32
32
  }