UNPKG

@influxdata/influxdb3-client

Version:

The Client that provides a simple and convenient way to interact with InfluxDB 3.

97 lines (96 loc) 3.5 kB
{ "name": "@influxdata/influxdb3-client", "version": "1.3.0", "description": "The Client that provides a simple and convenient way to interact with InfluxDB 3.", "scripts": { "build": "yarn cp ../../README.md ./README.md && yarn run clean && yarn run build:browser && yarn run build:node", "build:node": "yarn tsup", "build:browser": "yarn tsup --config ./tsup.config.browser.ts", "clean": "rimraf --glob dist build coverage .nyc_output doc *.lcov reports", "coverage": "nyc mocha --require ts-node/register 'test/**/*.test.ts' --exit", "coverage:ci": "yarn run coverage && yarn run coverage:lcov", "coverage:lcov": "yarn run --silent nyc report --reporter=text-lcov > coverage/coverage.lcov", "cp": "node ../../scripts/cp.js", "test": "yarn run lint && yarn run typecheck && yarn run test:all", "test:all": "mocha 'test/**/*.test.ts' --exit", "test:unit": "mocha 'test/unit/**/*.test.ts' --exit", "test:integration": "mocha 'test/integration/**/*.test.ts' --exit", "test:ci": "yarn run lint:ci && yarn run test:all --exit --reporter mocha-junit-reporter --reporter-options mochaFile=../../reports/core_mocha/test-results.xml", "test:watch": "mocha 'test/unit/**/*.test.ts' --watch-extensions ts --watch", "typecheck": "tsc --noEmit --pretty", "lint": "eslint src/**/*.ts test/**/*.ts", "lint:ci": "yarn run lint --format junit --output-file ../../reports/core_eslint/eslint.xml", "lint:fix": "eslint --fix src/**/*.ts" }, "main": "dist/index.js", "module": "dist/index.mjs", "module:browser": "dist/index.browser.mjs", "browser": "dist/index.browser.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "browser": { "import": "./dist/index.browser.mjs", "require": "./dist/index.browser.js", "script": "./dist/influxdb.js", "default": "./dist/index.browser.js" }, "deno": "./dist/index.browser.mjs", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "homepage": "https://github.com/InfluxCommunity/influxdb3-js", "repository": { "type": "git", "url": "git+https://github.com/InfluxCommunity/influxdb3-js", "directory": "packages/client" }, "keywords": [ "influxdb", "influxdata" ], "author": { "name": "InfluxData" }, "license": "MIT", "publishConfig": { "access": "public" }, "devDependencies": { "@types/chai": "^4.2.5", "@types/mocha": "^10.0.0", "@types/sinon": "^17.0.0", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.1", "chai": "^4.2.0", "esbuild": "^0.25.0", "esbuild-runner": "^2.2.1", "eslint": "^9.10.0", "eslint-config-prettier": "^10.0.1", "eslint-formatter-junit": "^8.40.0", "eslint-plugin-prettier": "^5.0.0", "follow-redirects": "^1.14.7", "mocha": "^11.0.1", "mocha-junit-reporter": "^2.0.2", "nock": "^13.3.1", "nyc": "^17.0.0", "prettier": "^3.0.0", "rimraf": "^5.0.0", "rxjs": "^7.2.0", "sinon": "^21.0.0", "ts-node": "^10.9.1", "tsup": "^8.0.1", "typescript": "^5.1.3" }, "dependencies": { "@grpc/grpc-js": "^1.9.9", "@protobuf-ts/grpc-transport": "^2.9.1", "@protobuf-ts/grpcweb-transport": "^2.9.1", "@protobuf-ts/runtime-rpc": "^2.9.1", "apache-arrow": "^19.0.0", "grpc-web": "^1.5.0" }, "gitHead": "5a68715673481ee40a375f8fa1b7f06ad7ea8484" }