-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 KB
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
{
"name": "clickhouse-orm",
"version": "3.0.2",
"description": "Clickhouse orm for Nodejs",
"repository": {
"type": "git",
"url": "git+https://github.com/zimv/node-clickhouse-orm.git"
},
"keywords": [
"zimv",
"clickhouse",
"orm"
],
"author": "zimv",
"license": "MIT",
"bugs": {
"url": "https://github.com/zimv/node-clickhouse-orm/issues"
},
"homepage": "https://github.com/zimv/node-clickhouse-orm#readme",
"scripts": {
"tsc": "tsc",
"build": "rm -rf ./dist & npm run tsc",
"ts-basic": "ts-node ./examples/basic.ts",
"node-basic": "node ./examples/basic",
"ts-more": "ts-node ./examples/more.ts",
"ts-cluster": "ts-node ./examples/cluster.ts",
"ts-datatype": "ts-node ./examples/datatype.ts",
"ts-sync": "ts-node ./examples/syncTable.ts",
"test": "jest --coverage",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"dependencies": {
"clickhouse": "^2.6.0",
"colors": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"coveralls": "^3.1.1",
"dayjs": "^1.10.7",
"jest": "^27.4.1",
"jest-mock": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}