UNPKG

pg-dump-restore

Version:

Nodejs wrapper around the pg_dump and pg_restore

67 lines (66 loc) 1.75 kB
{ "name": "pg-dump-restore", "version": "1.0.13", "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", "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": "git add -A src", "postversion": "git push && git push --tags", "postgresStart": "docker-compose up -d", "postgresStop": "docker-compose down", "_clean": "rimraf lib/" }, "repository": { "type": "git", "url": "git+https://github.com/redwert/pg-dump-restore.git" }, "keywords": [ "pg", "pg_dump", "pg_restore", "postgres" ], "author": "Pavlo Petryk", "license": "ISC", "bugs": { "url": "https://github.com/redwert/pg-dump-restore/issues" }, "homepage": "https://github.com/redwert/pg-dump-restore#readme", "publishConfig": { "registry": "https://registry.npmjs.org" }, "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", "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" } }