-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pgpm",
"version": "4.27.0",
"author": "Constructive <developers@constructive.io>",
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"bin": {
"pgpm": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"dev": "ts-node ./src/index.ts",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@inquirerer/test": "^1.4.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.11",
"@types/pg": "^8.20.0",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.10.0",
"glob": "^13.0.6",
"makage": "^0.3.0",
"pg": "^8.21.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"@inquirerer/utils": "^3.3.7",
"@pgpmjs/core": "workspace:^",
"@pgpmjs/env": "workspace:^",
"@pgpmjs/export": "workspace:^",
"@pgpmjs/logger": "workspace:^",
"@pgpmjs/types": "workspace:^",
"@pgsql/quotes": "^17.1.0",
"appstash": "^0.7.0",
"find-and-require-package-json": "^0.9.1",
"genomic": "^5.6.0",
"inquirerer": "^4.8.1",
"js-yaml": "^4.1.0",
"pg-cache": "workspace:^",
"pg-env": "workspace:^",
"pgsql-deparser": "^17.18.3",
"semver": "^7.8.1",
"shelljs": "^0.10.0",
"yanse": "^0.2.1"
},
"keywords": [
"cli",
"command-line",
"tool",
"postgres",
"postgresql",
"migration",
"package-manager",
"database",
"pg",
"pgsql"
],
"gitHead": "05d1197d6ff6e4c30afd0b8514427b612c5bc1e1"
}