43 lines
886 B
JSON
43 lines
886 B
JSON
{
|
|
"name": "tavily-compare",
|
|
"version": "1.0.0",
|
|
"description": "A simple library to compare three entities using the Tavily API.",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "jest --coverage",
|
|
"lint": "eslint . --ext .js",
|
|
"format": "prettier --write ."
|
|
},
|
|
"keywords": [
|
|
"tavily",
|
|
"compare",
|
|
"api",
|
|
"node"
|
|
],
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"node-fetch": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.7.0",
|
|
"eslint": "^8.56.0",
|
|
"prettier": "^3.0.3",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json"
|
|
],
|
|
"testMatch": [
|
|
"**/tests/**/*.test.js"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/tests/setup.js"
|
|
]
|
|
}
|
|
} |