-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
50
51
52
53
54
{
"name": "multitenant-migration-cli",
"version": "3.3.0",
"description": "Run sequelize migration for more than one databases with a single command.",
"license": "MIT",
"repository": "mjunaidahmad/multitenant-migration-cli",
"author": {
"name": "Junaid AHmad",
"email": "[email protected]",
"url": "https://twitter.com/junaidahmad_12"
},
"main": "index.js",
"engines": {
"node": ">=12.x"
},
"bin": {
"migration-cli": "index.js"
},
"files": [
"index.js",
"utils/*",
"data/*"
],
"keywords": [
"multitenant-migration-cli",
"Junaid Ahmad",
"multitenant",
"sequelize migrations"
],
"devDependencies": {
"ava": "^3.7.1",
"execa": "^4.0.0",
"prettier": "^2.0.5",
"sequelize-cli": "^5.5.1"
},
"scripts": {
"test": "ava",
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"chalk": "^4.0.0",
"cli-check-node": "^1.3.0",
"cli-handle-error": "^4.1.0",
"cli-handle-unhandled": "^1.1.0",
"cli-table3": "^0.6.0",
"cli-welcome": "^1.4.0",
"log-symbols": "^3.0.0",
"luxon": "^1.23.0",
"meow": "^6.1.0",
"mysql2": "^2.1.0",
"sequelize": "^5.21.7",
"umzug": "^2.3.0"
}
}