forked from apla/node-clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@makeomatic/clickhouse",
"version": "1.6.4",
"description": "Yandex ClickHouse database interface",
"main": "src/clickhouse.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"launch-docker-image": "docker compose up -d",
"stop-docker-image": "docker compose down -v",
"pretest": "yarn lint",
"test": "c8 mocha --recursive ./test -R spec",
"lint": "eslint ./src",
"report": "c8 report --reporter=lcov > coverage.lcov && codecov",
"simpletest": "mocha --recursive ./test -R spec",
"torturetest": "TORTURE=1 NODE_ENV=test ./node_modules/.bin/mocha --expose-gc --recursive ./test -R spec",
"clinic": "TORTURE=1 NODE_ENV=test clinic flame -- ./node_modules/.bin/mocha --expose-gc --recursive ./test -R spec",
"semantic-release": "semantic-release",
"prepare": "mdep install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeomatic/node-clickhouse.git"
},
"keywords": [
"clickhouse",
"database",
"db"
],
"maintainers": [
"Vitaly Aminev <v@makeomatic.ca>"
],
"author": "Ivan Baktsheev <dot.and.thing@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/node-clickhouse/issues"
},
"homepage": "https://github.com/makeomatic/node-clickhouse#readme",
"dependencies": {
"binary-split": "^1.0.5",
"bl": "^6.0.0",
"debug": "^4.3.4",
"lodash.defaults": "^4.2.0",
"split2": "^4.1.0",
"undici": "^5.18.0"
},
"devDependencies": {
"@airbnb/node-memwatch": "^2.0.0",
"@makeomatic/deploy": "^12.9.0",
"c8": "^8.0.1",
"csv-write-stream": "^2.0.0",
"eslint": "^8.34.0",
"eslint-config-makeomatic": "^5.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^48.0.1",
"mocha": "^10.2.0",
"p-limit": "^3.1.0",
"semantic-release": "^22.0.5",
"tempy": "1.x.x",
"typescript": "^5.2.2"
},
"engines": {
"node": ">= 12"
},
"files": [
"src/"
]
}