-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "ts-rove",
"version": "1.0.4",
"description": "Simple database migration api and cli for postgres",
"main": "./build/apis.js",
"author": "Axbon",
"license": "MIT",
"private": false,
"scripts": {
"release": "yarn publish && git push --tags"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"keywords": [
"postgres",
"migration",
"sql",
"database",
"pg",
"postgresql",
"rdbms"
],
"repository": {
"url": "https://github.com/Axbon/rove",
"type": "git"
},
"dependencies": {
"@types/pg": "^7.14.11",
"chalk": "^4.1.0",
"dot-env": "^0.0.1",
"pg": "^8.5.1"
},
"types": "./build/apis.d.ts",
"files": [
"build"
],
"bin": {
"rove": "build/cli.js"
}
}