-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "seam-pgm",
"repository": "seamapi/seam-pgm",
"version": "1.3.2",
"description": "Patterns for node-pg-migrate from Seam",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && ava",
"build": "tsup ./src/index.ts ./src/cli.ts --outDir ./dist --dts --sourcemap inline"
},
"bin": {
"seam-pgm": "./dist/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"pg-schema-dump": "^2.0.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"esbuild-register": "*",
"kysely": "*",
"node-pg-migrate": "*",
"pg-connection-from-env": "*",
"zapatos": "*"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/yargs": "^17.0.24",
"ava": "^5.3.1",
"ava-postgres": "^4.0.5",
"esbuild": "^0.18.16",
"esbuild-register": "^3.4.2",
"esbuild-runner": "^2.2.2",
"mkdirp": "^3.0.1",
"mock-fs": "^5.2.0",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.1",
"pg-connection-from-env": "^1.1.0",
"tsup": "^7.1.0",
"zapatos": "^6.1.4"
}
}