forked from sequelize/umzug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "umzug",
"version": "3.0.0-beta.5",
"description": "Framework-agnostic migration tool for Node",
"keywords": [
"migrate",
"migration",
"migrations",
"sequelize"
],
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"fs-jetpack": "^2.2.3",
"p-each-series": "^2.1.0",
"p-map": "^4.0.0",
"tory": "~0.4.3"
},
"devDependencies": {
"@types/jest": "26.0.10",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"del-cli": "3.0.1",
"eslint": "7.7.0",
"eslint-config-xo": "0.32.1",
"eslint-config-xo-typescript": "0.32.0",
"eslint-plugin-codegen": "0.12.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-mocha": "7.0.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-unicorn": "21.0.0",
"expect-type": "0.7.9",
"fs-syncer": "0.2.4",
"jest": "26.4.0",
"lodash": "4.17.20",
"np": "6.4.0",
"prettier": "2.0.5",
"sequelize": "5.21.6",
"sinon": "9.0.3",
"source-map-support": "0.5.19",
"sqlite3": "5.0.0",
"ts-jest": "26.2.0",
"type-fest": "0.16.0",
"typescript": "3.9.7",
"uuid": "8.3.0"
},
"scripts": {
"build": "del-cli lib && tsc",
"lint": "eslint --ext .js,.ts . --max-warnings 0",
"prepare": "npm run build",
"release": "np --no-2fa",
"pretest": "del-cli test/generated",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/sequelize/umzug.git"
},
"author": "Sascha Depold <sascha@depold.com>",
"contributors": [
{
"name": "Jukka Hyytiälä",
"email": "hyytiala.jukka@gmail.com"
},
{
"name": "Pascal Pflaum",
"email": "mail@pascalpflaum.de"
},
{
"name": "Pedro Augusto de Paula Barbosa",
"email": "papb1996@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sequelize/umzug/issues"
},
"homepage": "https://github.com/sequelize/umzug",
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*test.ts",
"**/*test.js"
],
"collectCoverageFrom": [
"src/**"
]
}
}