forked from Scimonster/sequelize-auto-migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 KB
/
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
42
43
44
45
46
47
48
49
{
"name": "sequelize-mig",
"version": "1.2.0",
"description": "Sequelize migration generator and es6 init tool",
"main": "index.js",
"private": false,
"engines": {
"node": ">=14.0.0"
},
"bin": {
"sequelize-mig": "./bin/sequelize-mig.mjs",
"runMigration": "./bin/runMigration.js",
"makeMigration": "./bin/makeMigration.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sequelize-mig": "node ./bin/sequelize-mig.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrvmv/sequelize-mig.git"
},
"keywords": [
"sequelize",
"migrations",
"migration",
"database",
"db",
"sql",
"cli"
],
"preferGlobal": true,
"author": "MRVMV",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrvmv/sequelize-mig/issues"
},
"homepage": "https://github.com/mrvmv/sequelize-mig#readme",
"dependencies": {
"async": "^3.2.0",
"command-line-args": "^5.0.2",
"deep-diff": "^1.0.2",
"js-beautify": "^1.8.9",
"lodash": "^4.17.11",
"object-hash": "^2.0.3",
"sequelize": "^6.3.4",
"yargs": "^15.4.1"
}
}