-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 960 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 960 Bytes
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
{
"name": "sequelizemm",
"version": "1.3.0",
"description": "Sequelize Migration script generator using interactive cli",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hasinoorit/sequelizemm.git"
},
"keywords": [
"Sequelize",
"Migration",
"Orm",
"CLI"
],
"license": "MIT",
"author": "Md Hashinur Rahman",
"bin": {
"sequelizemm": "./bin/index.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild"
},
"devDependencies": {
"@types/inquirer": "^9.0.2",
"@types/prompts": "^2.4.1",
"@types/sequelize": "^4.28.14",
"sequelize": "^6.25.3",
"typescript": "^4.8.4",
"unbuild": "^1.0.1"
},
"dependencies": {
"chalk": "^5.2.0",
"prompts": "^2.4.2"
}
}