forked from Scimonster/sequelize-auto-migrations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1015 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "sequelize-auto-migrations",
"version": "1.1.0",
"description": "Sequelize migrations generator && runner",
"main": "index.js",
"private": false,
"bin": {
"runmigration": "./bin/runmigration.js",
"makemigration": "./bin/makemigration.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flexxnn/sequelize-auto-migrations.git"
},
"keywords": [
"sequelize",
"migrations",
"migration",
"database",
"db",
"sql"
],
"author": "Michael Maslov",
"license": "MIT",
"bugs": {
"url": "https://github.com/flexxnn/sequelize-auto-migrations/issues"
},
"homepage": "https://github.com/flexxnn/sequelize-auto-migrations#readme",
"dependencies": {
"async": "^3.1.0",
"command-line-args": "^5.0.2",
"deep-diff": "^0.3.8",
"js-beautify": "^1.8.9",
"lodash": "^4.17.11",
"object-hash": "^1.3.1",
"sequelize": "^5.21.2"
}
}