-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "@shini4i/clickhouse-migrations",
"version": "0.1.16",
"description": "ClickHouse Migrations",
"bin": {
"clickhouse-migrations": "lib/cli.js"
},
"main": "lib/migrate.js",
"types": "lib/migrate.d.ts",
"scripts": {
"build": "rm lib/*; tsc",
"test": "jest --config jestconfig.json",
"coverage": "jest --config jestconfig.json --coverage"
},
"author": "Vadim Gedz <vadims@linux-tech.io>",
"contributors": [
{
"name": "VVVi",
"url": "https://github.com/VVVi"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/shini4i/gitlab-token-scope-adjuster.git"
},
"dependencies": {
"@clickhouse/client": "^1.2.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"clickhouse-migrations",
"clickhouse-migration",
"clickhouse-migrate",
"clickhouse",
"migrations",
"migration",
"migrate",
"cli"
]
}