@apiverve/sentimentanalysis 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.
- package/README.md +2 -6
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -72,14 +72,10 @@ api.execute(query, function (error, data) {
|
|
|
72
72
|
"error": null,
|
|
73
73
|
"data": {
|
|
74
74
|
"comparative": 0.25,
|
|
75
|
-
"calculation": [
|
|
76
|
-
{
|
|
77
|
-
"excited": 3
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
75
|
"sentimentText": "positive",
|
|
81
76
|
"sentiment": 3
|
|
82
|
-
}
|
|
77
|
+
},
|
|
78
|
+
"code": 200
|
|
83
79
|
}
|
|
84
80
|
```
|
|
85
81
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apiverve/sentimentanalysis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Sentiment Analysis is a simple tool for analyzing the sentiment of a text. It returns the sentiment score and the sentiment label.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/apiverve/sentimentanalysis-API/issues"
|
|
20
20
|
},
|
|
21
|
-
"homepage": "https://
|
|
21
|
+
"homepage": "https://apiverve.com/marketplace/api/sentimentanalysis?utm_source=npm",
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"mocha": "^10.
|
|
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.
|
|
30
|
+
"axios": "1.7.7"
|
|
31
31
|
}
|
|
32
32
|
}
|