-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "db-migrator-distributed",
"version": "0.0.5",
"description": "A tool for executing DB migrations based on Sequelize and Umzug. Safely executes migrations among distributed, synchronously launched server instances, by acquiring a greedy lock on a migration table.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gvko/db-migrator-distributed.git"
},
"keywords": [
"node",
"nodejs",
"sequelize",
"migrator",
"database",
"migrations",
"distributed",
"lock",
"umzug"
],
"author": "Galin Kostov <dev@galin.cc>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gvko/db-migrator-distributed/issues"
},
"homepage": "https://github.com/gvko/db-migrator-distributed#readme",
"scripts": {
"clean": "rm -rf ./dist",
"lint": "npx eslint --ext ts ./src",
"make": "npm run clean && tsc --pretty --project ./tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"umzug": "^2.3.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/node": "^16.11.5",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^6.7.2",
"husky": "^4.3.8",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "echo '===> Compiling...' && npm run make && echo '===> Linting...' && npm run lint"
}
}
}