-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.85 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
{
"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": {
"apidoc": "yarn clean && yarn build && yarn apidoc:extract && yarn apidoc:generate",
"apidoc:ci": "yarn apidoc:extract && yarn apidoc:generate",
"apidoc:extract": "yarn workspaces run apidoc:extract && node scripts/fix-extracted-api-files.js",
"apidoc:generate": "api-documenter markdown -i docs -o docs/dist && yarn cp scripts/gh-pages_config.yml docs/dist/_config.yml && node scripts/enhance-doc-index-md.js",
"apidoc:gh-pages": "gh-pages -d docs/dist -m 'Updates [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": {
"@microsoft/api-documenter": "^7.22.21",
"@types/node": "^22",
"gh-pages": "^6.0.0",
"lerna": "^8.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}