feat: solution for 'Повторный экзамен #2: Сравнительный обзор 3 сущностей (Tavily)'

This commit is contained in:
2026-07-01 11:31:54 +03:00
parent 29e3e8ba1d
commit f1bd10bd09
9 changed files with 321 additions and 247 deletions
+13 -7
View File
@@ -1,11 +1,11 @@
{
"name": "tavily-comparative-review",
"name": "tavily-compare",
"version": "1.0.0",
"description": "A small utility to fetch comparative reviews of three entities using the Tavily API.",
"description": "Compare three entities using the Tavily API with a single HTTP client approach.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest"
"test": "jest",
"lint": "eslint ."
},
"keywords": [
"tavily",
@@ -13,13 +13,19 @@
"api",
"node"
],
"author": "Your Name",
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.4.5"
"dotenv": "^16.3.1"
},
"devDependencies": {
"jest": "^29.7.0"
"eslint": "^8.48.0",
"jest": "^29.6.1",
"nock": "^13.3.0",
"prettier": "^3.0.0"
},
"jest": {
"testEnvironment": "node"
}
}