diff --git a/.gitignore b/.gitignore index 74f1fdb..ce3e8a5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,7 @@ .env /dbmate /dist +/node_modules /testdata/db/schema.sql /vendor +package-lock.json diff --git a/install.js b/install.js new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json new file mode 100644 index 0000000..ad029bd --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "dbmate", + "version": "1.5.0", + "description": "Lightweight, framework-agnostic database migration tool", + "files": [ + "install.js" + ], + "scripts": { + "install": "node install.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/amacneil/dbmate.git" + }, + "keywords": [ + "db", + "database", + "migration", + "migrations", + "postgres", + "postgresql", + "mysql", + "sqlite" + ], + "author": "Adrian Macneil", + "license": "MIT", + "bugs": { + "url": "https://github.com/amacneil/dbmate/issues" + }, + "homepage": "https://github.com/amacneil/dbmate#readme", + "dependencies": { + "node-fetch": "2.6.0" + } +}