query-analyzer
Version:
A utility for enhancing Sequelize queries with EXPLAIN options and logging detailed query plans.
48 lines (47 loc) • 1.07 kB
JSON
{
"name": "query-analyzer",
"version": "0.1.0",
"description": "A utility for enhancing Sequelize queries with EXPLAIN options and logging detailed query plans.",
"author": "Sohaib Abid",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Sohaib-Abid/query-analyzer.git"
},
"keywords": [
"Sequelize",
"SQL",
"Query",
"Postgresql",
"Analyzer",
"EXPLAIN",
"Performance"
],
"dependencies": {
"date-fns": "^4.1.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.9",
"jest": "^29.7.0",
"sequelize": "^6.37.7",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"sequelize": "^6.0.0 || ^7.0.0-alpha"
},
"engines": {
"node": ">=16.0.0 <=22.x"
}
}