-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.11 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.11 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "node-pg-migrate",
"version": "9.0.0-alpha.9",
"description": "PostgreSQL database migration management tool for node.js",
"scripts": {
"clean": "git clean -fdx --exclude .claude",
"build": "tsdown",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"ts-check": "tsc",
"test": "vitest",
"test:unit": "vitest --project unit",
"test:integration": "vitest --project integration",
"test:update-snapshots": "vitest run -u",
"test:coverage": "vitest --project unit --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"premigrate": "pnpm run build",
"migrate": "node bin/node-pg-migrate.js",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && run-s format build lint test:update-snapshots ts-check"
},
"keywords": [
"api",
"cockroach",
"cockroachdb",
"database",
"db",
"db-migrate",
"expandable",
"extensible",
"migrate",
"migration",
"migrations",
"migrator",
"pg",
"postgre",
"postgres",
"postgresql",
"programable",
"programatic",
"sql"
],
"homepage": "https://github.com/salsita/node-pg-migrate",
"bugs": {
"url": "https://github.com/salsita/node-pg-migrate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salsita/node-pg-migrate.git"
},
"license": "MIT",
"author": "Theo Ephraim",
"contributors": [
"Salsita Software <jando@salsitasoft.com>",
"Christopher Quadflieg <chrissi92@hotmail.de>"
],
"type": "module",
"exports": {
"./bin/*": {
"default": "./bin/*.js"
},
".": {
"types": "./dist/bundle/index.d.ts",
"default": "./dist/bundle/index.js"
},
"./*": {
"types": "./dist/legacy/*.d.ts",
"default": "./dist/legacy/*.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"node-pg-migrate": "bin/node-pg-migrate.js"
},
"files": [
"bin",
"dist",
"templates"
],
"dependencies": {
"glob": "~13.0.0",
"jiti": "~2.6.0",
"yargs": "~18.0.0"
},
"devDependencies": {
"@testcontainers/postgresql": "11.14.0",
"@types/config": "4.4.0",
"@types/node": "20.19.39",
"@types/pg": "8.20.0",
"@types/yargs": "17.0.35",
"@vitest/coverage-v8": "4.1.4",
"@vitest/ui": "4.1.4",
"config": "4.4.1",
"dotenv": "17.3.1",
"dotenv-expand": "12.0.3",
"node-pg-migrate": "file:.",
"npm-run-all2": "8.0.4",
"oxfmt": "0.45.0",
"oxlint": "1.61.0",
"oxlint-tsgolint": "0.21.1",
"pg": "8.20.0",
"testcontainers": "11.14.0",
"tsdown": "0.21.10",
"typescript": "6.0.3",
"vitepress": "1.6.4",
"vitest": "4.1.4"
},
"peerDependencies": {
"@types/pg": ">=6.0.0 <9.0.0",
"pg": ">=4.3.0 <9.0.0"
},
"peerDependenciesMeta": {
"@types/pg": {
"optional": true
}
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.11.0"
}
}