stepwise-migrations 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +14 -5
package/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # Stepwise Migrations
2
2
 
3
- A tool for managing migrations in a Postgres database.
4
- Loosely based, but in Typescript.
5
-
3
+ A tool for managing Raw SQL migrations in a Postgres database.
4
+ Loosely based on flyway.
6
5
  Only "up" migrations are supported so far, but what more do you need?
7
6
 
8
7
  ## Usage
package/package.json CHANGED
@@ -1,19 +1,28 @@
1
1
  {
2
2
  "name": "stepwise-migrations",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "build": "tsc"
8
8
  },
9
- "keywords": [],
10
- "author": "",
11
- "license": "ISC",
9
+ "keywords": [
10
+ "migrations",
11
+ "postgres",
12
+ "raw sql",
13
+ "sql"
14
+ ],
15
+ "author": "github.com/mj1618",
16
+ "license": "MIT",
12
17
  "devDependencies": {
13
18
  "@types/pg": "^8.11.10",
14
19
  "@types/yargs": "^17.0.33"
15
20
  },
16
21
  "bin": {
17
- "stepwise-migrations": "./dist/index.js"
22
+ "stepwise-migrations": "dist/index.js"
23
+ },
24
+ "dependencies": {
25
+ "pg": "^8.13.1",
26
+ "yargs": "^17.7.2"
18
27
  }
19
28
  }