@apiverve/seovalidator 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 -3
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -73,13 +73,15 @@ api.execute(query, function (error, data) {
73
73
  "data": {
74
74
  "url": "https://ebay.com",
75
75
  "passed": false,
76
- "entries": 3,
76
+ "entries": 4,
77
77
  "output": [
78
- "There are 372 'a' tag without rel attribute.",
78
+ "There are 15 'img' tag without alt attribute.",
79
+ "There are 453 'a' tag without rel attribute.",
79
80
  "This HTML does not have 'meta name=descriptions' in 'head'",
80
81
  "This HTML does not have 'meta name=keywords' in 'head'"
81
82
  ]
82
- }
83
+ },
84
+ "code": 200
83
85
  }
84
86
  ```
85
87
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apiverve/seovalidator",
3
- "version": "1.1.2",
3
+ "version": "1.1.5",
4
4
  "description": "SEO Validator is a simple tool for validating SEO metrics. It returns a list of issues that need to be fixed to improve the SEO metrics of a web page.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,15 +18,15 @@
18
18
  "bugs": {
19
19
  "url": "https://github.com/apiverve/seovalidator-API/issues"
20
20
  },
21
- "homepage": "https://github.com/apiverve/seovalidator-API",
21
+ "homepage": "https://apiverve.com/marketplace/api/seovalidator?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
  }