-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1003 Bytes
/
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
{
"name": "clickhouse-query",
"version": "1.10.2",
"description": "ClickHouse Query is intuitive query builder to overcome the complexity of ClickHouse SQL syntax.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/MPLens/clickhouse-query"
},
"bugs": {
"url": "https://github.com/MPLens/clickhouse-query/issues"
},
"keywords": [
"clickhouse",
"sql",
"node"
],
"author": "MPLens",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "npm run build",
"test-publish": "npm pack",
"publish": "npm publish",
"toc": "./node_modules/.bin/markdown-toc README.md -i "
},
"dependencies": {
"clickhouse": "^2.6.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"markdown-toc": "^1.2.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}