-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"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",
"devDependencies": {
"@types/node": "^22",
"gh-pages": "^6.0.0",
"lerna": "^8.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"typedoc": "^0.27.5"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}