forked from viiinzzz/sequelize-typescript-migration
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
79 lines (79 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sequelize-typescript-migration-lts",
"version": "3.2.5",
"description": "migration tool for sequelize & typescript users",
"keywords": [
"sequelize",
"typescript",
"migrate",
"migration",
"makemigration",
"diff",
"compare",
"detect",
"changes"
],
"homepage": "https://github.com/mmRoshani/sequelize-typescript-migration",
"bugs": {
"url": "https://github.com/mmRoshani/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",
"lint": "eslint --ext .ts .",
"test": "jest --detectOpenHandles"
},
"bin": {
"sequelize-typescript-migration": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mmRoshani/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.23.2",
"sequelize-typescript": "^2.1.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/deep-diff": "^1.0.1",
"@types/inflection": "^1.13.0",
"@types/jest": "^29.4.0",
"@types/js-beautify": "^1.13.3",
"@types/node": "^17.0.23",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"dotenv": "^16.0.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.4.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=12"
},
"directories": {
"example": "example"
}
}