-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.84 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sequelize-mig-generator",
"description": "Streamline the management of Sequelize database schema changes with a CLI tool for generating migration files effortlessly.",
"type": "module",
"keywords": [
"sequelize",
"cli",
"migration-tool",
"sequelize-auto"
],
"version": "0.2.0",
"license": "MIT",
"author": {
"name": "Dor Alteresku",
"url": "https://github.com/doralteres"
},
"repository": {
"type": "git",
"url": "https://github.com/doralteres/sequelize-mig-generator.git"
},
"bugs": {
"url": "https://github.com/doralteres/sequelize-mig-generator/issues"
},
"main": "./dist/src/index.js",
"bin": "./dist/src/bin/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/lodash": "^4.14.197",
"@types/node": "^20.4.5",
"@types/sequelize": "^4.28.15",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"gts": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "~5.3.3"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "rm -rf ./dist && tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"prelocal": "yarn run compile",
"posttest": "yarn run lint",
"postcompile": "yarn run copy:templates",
"local": "chmod +x ./dist/src/bin/index.js && yarn unlink --global && yarn link --global",
"copy:templates": "cp -r ./templates ./dist/",
"commit": "cz",
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} :dizzy: [skip ci]'"
},
"dependencies": {
"commander": "^11.0.0",
"consola": "^3.2.3",
"handlebars": "^4.7.8",
"lodash": "^4.17.21",
"sequelize": "^6.32.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}