-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "@ovotech/pg-sql-migrate",
"description": "migrate db using postgres sql files",
"repository": "git@github.com:ovotech/pg-sql-migrate.git",
"homepage": "https://github.com/ovotech/pg-sql-migrate",
"version": "4.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ivan Kerin <ikerin@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"lint:prettier": "prettier --list-different '{src,test}/**/*.ts'",
"lint:eslint": "eslint '{src,test}/**/*.ts'",
"lint": "yarn lint:prettier && yarn lint:eslint",
"build": "tsc --declaration",
"migrate": "node -r ts-node/register src/cli.ts"
},
"bin": {
"migrate": "./scripts/migrate",
"pg-sql-migrate": "./scripts/migrate"
},
"dependencies": {
"@ovotech/config-file": "^1.0.0",
"commander": "^9.2.0",
"pg": "^8.7.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"jest-junit": "^13.2.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}