forked from apla/node-clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "@cubejs-backend/apla-clickhouse",
"version": "1.7.0",
"description": "ClickHouse database interface",
"main": "src/clickhouse.js",
"scripts": {
"legacy-install": "node ./src/legacy-support.js",
"launch-docker-image": "docker run --rm -d -p 8123:8123 --name clickhouse-server clickhouse/clickhouse-server",
"stop-docker-image": "docker stop clickhouse-server",
"test": "nyc mocha --recursive ./test -R spec",
"report": "nyc report --reporter=lcov > coverage.lcov && codecov",
"simpletest": "mocha --recursive ./test -R spec",
"torturetest": "TORTURE=1 mocha -gc --recursive ./test -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cube-js/apla-node-clickhouse.git"
},
"keywords": [
"clickhouse",
"database",
"db"
],
"author": "Ivan Baktsheev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cube-js/apla-node-clickhouse/issues"
},
"homepage": "https://github.com/cube-js/apla-node-clickhouse#readme",
"dependencies": {},
"devDependencies": {
"bluebird": "^3.5.0",
"codecov": "^2.2.0",
"mocha": "^2.5.3",
"nyc": "^10.2.0"
},
"engines": {
"node": ">=0.10"
},
"publishConfig": {
"access": "public"
}
}