-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "postgrator",
"version": "8.0.0",
"author": "Rick Bergfalk <[email protected]>",
"description": "A SQL migration tool for SQL people",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"keywords": [
"migrator",
"migration",
"postgres",
"postgresql",
"mysql",
"sql server",
"sql"
],
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"lint": "eslint \"**/*.js\" && prettier --check .",
"prettier-write": "prettier --write .",
"test": "mocha --recursive \"test/**/*.{js,ts}\"",
"prepare": "husky"
},
"dependencies": {
"glob": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/rickbergfalk/postgrator.git"
},
"main": "postgrator.js",
"types": "postgrator.d.ts",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"@types/pg": "^8.6.5",
"better-sqlite3": "^11.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.0.0",
"mssql": "^11.0.1",
"mysql": "^2.18.1",
"pg": "^8.7.3",
"prettier": "^2.6.2",
"sqlite3": "^5.0.8",
"ts-node": "^10.8.1",
"typescript": "^5.6.3"
}
}