forked from talk2cerlin/pg-dump-restore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@kalvi-education/pg-dump-restore",
"version": "1.2.1",
"description": "Nodejs wrapper around the pg_dump and pg_restore",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run _clean && tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js --detectOpenHandles",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"postgresStart": "docker-compose up -d",
"postgresStop": "docker-compose down",
"_clean": "rimraf lib/"
},
"repository": {
"url": "[email protected]:Kalvi-Education/pg-dump-restore.git"
},
"keywords": [
"pg",
"pg_dump",
"pg_restore",
"postgres"
],
"author": "Pavlo Petryk",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kalvi-Education/pg-dump-restore/issues"
},
"homepage": "https://github.com/Kalvi-Education/pg-dump-restore#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"execa": "^5.1.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.4",
"fs-extra": "^10.1.0",
"jest": "^28.1.3",
"pg": "^8.7.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sequelize": "^6.28.2",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"files": [
"lib/**/*",
"readme.md"
],
"directories": {
"lib": "lib",
"test": "tests"
}
}