-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 4.06 KB
/
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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "node-pg-migrate",
"version": "7.7.0-rc.0",
"description": "PostgreSQL database migration management tool for node.js",
"scripts": {
"clean": "rimraf .eslintcache dist pnpm-lock.yaml node_modules",
"build:bin": "tsup-node --config tsup-bin.config.ts",
"build:clean": "rimraf dist",
"build:code": "tsup-node",
"build:types": "tsc --project tsconfig.build.json",
"build": "run-s build:clean build:code build:types build:bin",
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
"ts-check": "tsc",
"test": "vitest",
"test:update-snapshots": "vitest run -u",
"test:coverage": "vitest --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"premigrate": "run-s build:bin",
"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"
},
"bin": {
"node-pg-migrate": "bin/node-pg-migrate.js",
"node-pg-migrate-cjs": "bin/node-pg-migrate.js",
"node-pg-migrate-esm": "bin/node-pg-migrate.mjs"
},
"type": "commonjs",
"main": "dist/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./dist/*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/esm/*.mjs",
"default": "./dist/*.js"
},
"./bin/*": {
"require": "./bin/*.js",
"import": "./bin/*.mjs",
"default": "./bin/*.js"
},
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/esm/index.mjs",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js"
},
"./package.json": "./package.json"
},
"files": [
"bin",
"dist",
"templates"
],
"author": "Theo Ephraim",
"contributors": [
"Salsita Software <jando@salsitasoft.com>",
"Christopher Quadflieg <chrissi92@hotmail.de>"
],
"keywords": [
"db",
"database",
"migrate",
"migration",
"migrations",
"migrator",
"db-migrate",
"sql",
"pg",
"postgre",
"postgres",
"postgresql",
"cockroach",
"cockroachdb",
"extensible",
"expandable",
"programatic",
"programable",
"api"
],
"bugs": {
"url": "https://github.com/salsita/node-pg-migrate/issues"
},
"license": "MIT",
"homepage": "https://github.com/salsita/node-pg-migrate",
"repository": {
"type": "git",
"url": "git+https://github.com/salsita/node-pg-migrate.git"
},
"dependencies": {
"yargs": "~17.7.0"
},
"devDependencies": {
"@eslint-types/prettier": "5.1.3",
"@eslint-types/typescript-eslint": "7.5.0",
"@eslint-types/unicorn": "52.0.0",
"@types/config": "3.3.4",
"@types/node": "18.19.47",
"@types/pg": "8.11.8",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.0.5",
"@vitest/ui": "2.0.5",
"config": "3.3.12",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"dotenv-expand": "11.0.6",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "2.1.0",
"eslint-gitignore": "0.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "55.0.0",
"json5": "2.2.3",
"node-pg-migrate": "file:.",
"npm-run-all2": "6.2.2",
"pg": "8.12.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tsup": "8.2.4",
"tsx": "4.19.0",
"typescript": "5.5.4",
"vitepress": "1.3.4",
"vitest": "2.0.5"
},
"peerDependencies": {
"@types/pg": ">=6.0.0 <9.0.0",
"pg": ">=4.3.0 <9.0.0"
},
"peerDependenciesMeta": {
"@types/pg": {
"optional": true
}
},
"packageManager": "pnpm@9.9.0",
"engines": {
"node": ">=18.19.0"
}
}