arangodb-cubejs-driver
Version:
Cube.js arangodb driver
71 lines (70 loc) • 1.61 kB
JSON
{
"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"
]
}