-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 966 Bytes
/
package.json
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
{
"name": "partman-wizard",
"version": "0.0.2",
"description": "This utility will help you with partitioning your tables in PostgreSQL databases",
"main": "index.mjs",
"bin": {
"partman-wizard": "./index.mjs"
},
"scripts": {
"start": "node ./index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateuszsokola/partman-wizard.git"
},
"keywords": [
"partman",
"postgres",
"postgresql",
"pg_partman",
"cli",
"command line",
"wizard",
"table",
"database",
"rdbms",
"partitioning",
"nodejs",
"node"
],
"author": "Mateusz Sokola (https://mateu.sh/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mateuszsokola/partman-wizard/issues"
},
"homepage": "https://github.com/mateuszsokola/partman-wizard#readme",
"dependencies": {
"@inquirer/prompts": "5.3.8",
"chalk": "5.3.0",
"commander": "12.1.0",
"pg": "8.12.0"
}
}