-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
93 lines (93 loc) · 2.02 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "umzug",
"version": "3.8.2",
"description": "Framework-agnostic migration tool for Node",
"keywords": [
"migrate",
"migration",
"migrations",
"sequelize",
"database"
],
"main": "lib/index.js",
"files": [
"lib"
],
"packageManager": "[email protected]",
"dependencies": {
"@rushstack/ts-command-line": "^4.12.2",
"emittery": "^0.13.0",
"fast-glob": "^3.3.2",
"pony-cause": "^2.1.4",
"type-fest": "^4.0.0"
},
"devDependencies": {
"@types/lodash": "4.17.0",
"@types/node": "20.12.7",
"@types/uuid": "8.3.4",
"@types/verror": "1.10.10",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"del": "^5.0.0",
"eslint": "8.57.0",
"eslint-plugin-mmkal": "0.5.1",
"execa": "^5.1.1",
"expect-type": "0.19.0",
"fs-syncer": "0.5.3",
"lodash": "4.17.21",
"np": "10.0.5",
"p-event": "^4.0.0",
"pkg-pr-new": "0.0.20",
"sequelize": "6.37.3",
"source-map-support": "0.5.21",
"sqlite3": "5.1.7",
"strip-ansi": "6.0.1",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"uuid": "9.0.1",
"verror": "1.10.1",
"vitest": "^0.34.6"
},
"scripts": {
"clean": "rm -rf lib",
"compile": "tsc -p tsconfig.lib.json",
"build": "pnpm clean && pnpm compile",
"eslint": "eslint . --max-warnings 0",
"lint": "pnpm type-check && pnpm eslint",
"prepare": "pnpm build",
"pretest": "rm -rf test/generated",
"test": "vitest run",
"type-check": "tsc -p ."
},
"repository": {
"type": "git",
"url": "https://github.com/sequelize/umzug.git"
},
"author": "Sascha Depold <[email protected]>",
"contributors": [
{
"name": "Misha Kaletsky",
"email": "[email protected]"
},
{
"name": "Jukka Hyytiälä",
"email": "[email protected]"
},
{
"name": "Pascal Pflaum",
"email": "[email protected]"
},
{
"name": "Pedro Augusto de Paula Barbosa",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sequelize/umzug/issues"
},
"homepage": "https://github.com/sequelize/umzug",
"engines": {
"node": ">=12"
}
}