-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "pg_analyser",
"version": "1.2.0",
"description": "A powerful PostgreSQL analysis tool for optimizing database performance, security, and configuration.",
"main": "dist/src/main.js",
"bin": {
"pg-analyser": "./dist/src/main.js"
},
"scripts": {
"test": "npx jest",
"build": "tsc"
},
"keywords": [
"postgres",
"postgresql",
"database-analysis",
"performance-optimization",
"security-analysis",
"database-configuration",
"cli-tool",
"db-admin-tools",
"postgresql-utilities",
"ci-cd-integration",
"database-maintenance",
"sql-analysis"
],
"author": "Radical Geek - Mark Jones",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/pg": "^8.11.2",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"pg": "^8.11.3",
"socket.io": "^4.7.4",
"yargs": "^17.7.2"
}
}