forked from panoti/cubejs-arangodb-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.58 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
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": "arangodb-cubejs-driver",
"description": "Cube.js arangodb driver",
"author": "pnthanh",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/panoti/cubejs-arangodb-driver.git"
},
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint src/* test/* --ext .ts,.js",
"lint:fix": "eslint --fix src/* test/* --ext .ts,.js",
"test": "jest",
"test:integration": "jest --config ./test/jest-intergration.json"
},
"files": [
"dist"
],
"dependencies": {
"@cubejs-backend/base-driver": "^0.33.41",
"arangojs": "^8.4.0",
"pgsql-ast-parser": "^11.1.0"
},
"license": "MIT",
"devDependencies": {
"@cubejs-backend/linter": "^0.33.0",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"testcontainers": "^9.12.0",
"ts-jest": "^29.1.1",
"typescript": "~4.9.5"
},
"eslintConfig": {
"extends": "./node_modules/@cubejs-backend/linter/index.js"
},
"publishConfig": {
"access": "public"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"keywords": [
"arangodb-cubejs-driver",
"cubejs",
"arangodb",
"cubejs-driver"
]
}