This commit is contained in:
Adrian Macneil 2019-05-25 10:55:15 -07:00
parent a31e06b438
commit bd97bea252
3 changed files with 36 additions and 0 deletions

2
.gitignore vendored
View file

@ -2,5 +2,7 @@
.env .env
/dbmate /dbmate
/dist /dist
/node_modules
/testdata/db/schema.sql /testdata/db/schema.sql
/vendor /vendor
package-lock.json

0
install.js Normal file
View file

34
package.json Normal file
View file

@ -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"
}
}