forked from mricharz/sequelize-typescript-migration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
{
"name": "@viiinzzz/sequelize-typescript-migration",
"version": "2.0.3",
"description": "migration tool for sequelize & typescript users",
"keywords": [
"sequelize",
"typescript",
"migrate",
"migration",
"makemigration",
"diff",
"compare",
"detect",
"changes"
],
"homepage": "https://github.com/viiinzzz/sequelize-typescript-migration",
"bugs": {
"url": "https://github.com/viiinzzz/sequelize-typescript-migration/issues",
"email": "[email protected]"
},
"main": "dist/index.js",
"scripts": {
"release": "npm publish --access public",
"build": "tsc",
"start": "node dist/index.js",
"packlist": "npx npm-packlist"
},
"bin": {
"sequelize-typescript-migration": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/viiinzzz/sequelize-typescript-migration.git"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"deep-diff": "^1.0.2",
"inflection": "^1.13.2",
"js-beautify": "^1.14.0",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-typescript": "^2.1.3",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/deep-diff": "^1.0.1",
"@types/inflection": "^1.13.0",
"@types/js-beautify": "^1.13.3",
"@types/node": "^17.0.23",
"@types/validator": "^13.7.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1"
},
"engines": {
"node": ">=12"
},
"directories": {
"example": "example"
}
}