-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"type": "module",
"private": false,
"version": "1.0.0",
"main": "src/index.js",
"license": "Apache-2.0",
"name": "@neondatabase/pg-import",
"description": "A CLI tool for migrating data from one PostgreSQL database to another.",
"bin": {
"pg-import": "bin/migrate.js"
},
"scripts": {
"fmt": "prettier --write '**/*' --ignore-unknown"
},
"dependencies": {
"commander": "^12.1.0",
"pg": "^8.11.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"prettier": "^3.2.5",
"semantic-release": "^23.1.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/neondatabase/pg-import.git"
},
"bugs": {
"url": "https://github.com/neondatabase/pg-import/issues"
},
"keywords": [
"postgres",
"postgresql"
]
}