-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.75 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
{
"name": "pg-bump",
"version": "5.0.0",
"license": "MIT",
"description": "SQL migration CLI for PostgreSQL.",
"type": "module",
"engines": {
"node": ">=14"
},
"main": "./dist/index.js",
"bin": {
"pg-bump": "./dist/cli.js"
},
"files": [
"dist/"
],
"scripts": {
"test": "mocha",
"cover": "c8 -r text -r html -r lcov mocha",
"demo": "ts-node --esm --swc -r dotenv/config src/cli.ts",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.prod.json",
"prepare": "husky install; [ -f .env ] || cp .env.example .env",
"prepack": "npm run build"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.0",
"postgres": "^3.3.4"
},
"devDependencies": {
"@swc/core": "^1.3.40",
"@swc/helpers": "^0.4.14",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"c8": "^7.13.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"mocha": "^10.2.0",
"regenerator-runtime": "^0.13.11",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"homepage": "https://github.com/thebearingedge/pg-bump#readme",
"bugs": {
"url": "https://github.com/thebearingedge/pg-bump/issues"
},
"keywords": [
"postgresql",
"database",
"schema",
"migrations",
"sql",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thebearingedge/pg-bump.git"
},
"author": "Tim Davis <contact@timdav.is> (https://timdav.is/)",
"contributors": [
{
"name": "Tim Davis",
"email": "contact@timdav.is",
"url": "https://timdav.is/"
}
]
}