-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.35 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
{
"name": "@gabbe/pg-migrate",
"version": "1.0.0",
"description": "A lightweight PostgreSQL schema migration tool. Simple to run, strict about history.",
"author": "gabts",
"license": "MIT",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabts/pg-migrate.git"
},
"bugs": {
"url": "https://github.com/gabts/pg-migrate/issues"
},
"keywords": [
"database",
"migrate",
"migration",
"migrations",
"pg",
"postgres",
"postgresql",
"schema"
],
"files": [
"bin/cli.js",
"dist/**/*",
"!dist/**/*.test.*"
],
"bin": {
"pg-migrate": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "mocha --verbose --spec \"dist/**/*.test.js\"",
"format": "prettier --write ."
},
"dependencies": {
"pg": "^8.20.0"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.17",
"@types/pg": "^8.20.0",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=22"
}
}