-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"private": true,
"description": "The Client that provides a simple and convenient way to interact with InfluxDB 3.",
"workspaces": {
"packages": [
"packages/client",
"packages/client-browser"
]
},
"scripts": {
"typedoc": "yarn clean && yarn build && typedoc --skipErrorChecking",
"typedoc:gh-pages": "yarn typedoc && gh-pages -d ./docs -m 'docs: updates documentation [skip CI]'",
"preinstall": "node ./scripts/require-yarn.js",
"clean": "rimraf temp docs && yarn workspaces run clean",
"cp": "node ./scripts/cp.js",
"build": "yarn workspaces run build",
"test": "yarn --cwd packages/client build && yarn workspaces run test",
"test:ci": "yarn workspaces run test:ci",
"test:unit": "yarn workspaces run test:unit",
"coverage": "cd packages/client && yarn build && yarn coverage",
"coverage:ci": "cd packages/client && yarn build && yarn coverage:ci",
"flight": "node ./scripts/generate-flight",
"flight:test": "node ./scripts/generate-flight test"
},
"homepage": "https://github.com/InfluxCommunity/influxdb3-js",
"repository": {
"type": "git",
"url": "git+https://github.com/InfluxCommunity/influxdb3-js"
},
"keywords": [
"influxdb",
"influxdata"
],
"author": {
"name": "InfluxData"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^25",
"gh-pages": "^6.0.0",
"lerna": "^9.0.3",
"prettier": "^3.0.0",
"rimraf": "^6.1.2",
"tmp": "^0.2.4",
"typedoc": "^0.28.9"
},
"overrides": {
"external-editor": {
"tmp": "latest"
}
},
"resolutions": {
"jackspeak": "4.1.1"
}
}