forked from AnatolyUss/nmig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "nmig",
"version": "6.0.0",
"description": "The database migration app",
"author": "Anatoly Khaytovich<[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/AnatolyUss/nmig.git"
},
"engines": {
"node": ">=18.16.1"
},
"dependencies": {
"@types/node": "20.4.4",
"@types/uuid": "9.0.2",
"@types/pg": "8.10.2",
"@types/pg-copy-streams": "1.2.2",
"json2csv": "5.0.7",
"mysql2": "3.5.2",
"pg": "8.11.1",
"pg-copy-streams": "6.0.6",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/tape": "5.6.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"eslint": "8.44.0",
"prettier": "3.0.0",
"tape": "5.6.6",
"typescript": "5.1.6"
},
"scripts": {
"build": "tsc --incremental -p tsconfig.json",
"lint": "npx eslint . --ext .ts",
"format": "npx prettier . --ignore-path ./.prettierignore --write && git status",
"flb": "npm run format && npm run lint && npm run build",
"start": "node dist/src/Main.js",
"test": "node dist/test/Main.test.js"
},
"keywords": [
"db migration",
"database migration",
"databases migration",
"mysql",
"mariadb",
"copy",
"postgresql",
"postgres",
"postgre",
"pg"
]
}