-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 987 Bytes
/
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
{
"name": "postgrate",
"author": {
"name": "General Dynamic Information Software"
},
"version": "1.2.0",
"exports": "./dist/bin/index.js",
"description": "Simple PostgreSQL migration tool for raw-SQL loving developers.",
"license": "MIT",
"type": "module",
"keywords": [
"postgres",
"migrations",
"database",
"sql",
"typescript"
],
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"pretty": "prettier . --write",
"test": "vitest"
},
"bin": {
"postgrate": "./dist/bin/index.js"
},
"devDependencies": {
"@types/node": "^20.9.5",
"@types/pg": "^8.10.9",
"concurrently": "^8.2.2",
"dotenv": "^16.3.1",
"pg": "^8.11.3",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vitest": "^1.4.0"
},
"peerDependencies": {
"dotenv": "^16.3.1",
"pg": "^8.11.3"
},
"repository": {
"type": "git",
"url": "https://github.com/GeneralDynamicInformationSoftware/postgrate.git"
}
}