-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.53 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
{
"name": "agnostic-sql-migrator",
"version": "1.0.4",
"description": "Database agnostic migrator tool for SQL databases",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "aangelisc <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/mssql": "^6.0.8",
"@types/node": "^15.3.0",
"@types/pg": "^7.14.11",
"jest": "^26.6.3",
"testcontainers": "^7.10.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"mssql": "^7.1.0",
"mysql2": "^2.2.5",
"pg": "^8.6.0"
},
"peerDependencies": {
"mssql": "^7.1.0",
"mysql2": "^2.2.5",
"pg": "^8.6.0"
},
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"test": "jest --runInBand --verbose"
},
"files": [
"dist"
],
"bin": "./dist/cli.js",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "((\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git://github.com:aangelisc/agnostic-sql-migrator.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"sql",
"psql",
"postgres",
"mssql",
"sql server",
"mysql",
"migrator",
"db",
"database",
"migration",
"migrate",
"pg",
"typescript"
]
}