UNPKG

pg-change

Version:

Postgres migration tool built with Node.js using the Postgres.js driver

43 lines (42 loc) 1.18 kB
{ "name": "pg-change", "version": "0.1.5", "description": "Postgres migration tool built with Node.js using the Postgres.js driver", "type": "module", "bin": { "pgChange": "index.js" }, "author": "David Skrenta <dskrenta@gmail.com> (https://davidskrenta.com)", "homepage": "https://github.com/dskrenta/pg-change", "repository": { "type": "git", "url": "git+https://github.com/dskrenta/pg-change.git" }, "license": "MIT", "scripts": { "pg-create": "docker run --restart always --name postgres -e POSTGRES_PASSWORD=password -d -p 5432:5432 postgres", "pg-start": "docker start postgres", "pg-stop": "docker stop postgres", "pg-delete": "docker rm postgres", "pg-connect": "PGPASSWORD=password psql -h localhost postgres postgres", "pg-logs": "docker logs postgres", "build": "node createCjsWrapper.js" }, "devDependencies": { "postgres": "^3.4.4" }, "keywords": [ "PostgreSQL", "database", "migration", "postgres", "postgres.js", "pg-migrate", "pg-migrations", "database-migration", "db-migrate", "schema-migration", "database-tools", "pg-change" ] }