-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.2 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
52
53
54
55
56
{
"name": "clickcache",
"version": "3.0.6",
"description": "Clickhouse data collector for delayed batch insert",
"main": "lib/index.js",
"files": [
"lib/**/*",
"*.yml",
"*.json"
],
"scripts": {
"build": "rm -rf lib && tsc -d",
"test": "jest --detectOpenHandles",
"coveralls": "coveralls",
"lint": "eslint . --ext .ts"
},
"engines": {
"node": ">=16"
},
"keywords": [
"clickhouse",
"batch",
"insert",
"cache",
"in-memory",
"ram",
"disk",
"s3",
"clickhouse-ts",
"chvalid"
],
"repository": {
"type": "git",
"url": "https://github.com/bytadaniel/clickcache.git"
},
"bugs": {
"url": "https://github.com/bytadaniel/clickcache/issues"
},
"homepage": "https://github.com/bytadaniel/clickcache#readme",
"author": "@bytadaniel Daniel Byta",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^18.8.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"cuid": "^2.1.8"
}
}