-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
49 lines (49 loc) · 1.89 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": "InfluxDB 2.x client",
"workspaces": {
"packages": [
"packages/core",
"packages/core-browser",
"packages/apis",
"packages/giraffe"
]
},
"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 && 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",
"build": "yarn workspaces run build",
"test": "yarn --cwd packages/core build && yarn workspaces run test && yarn lint:examples",
"test:ci": "yarn workspaces run test:ci && yarn lint:examples:ci",
"coverage": "cd packages/core && yarn build && yarn coverage && cd ../giraffe && yarn coverage",
"coverage:ci": "cd packages/core && yarn build && yarn coverage:ci && cd ../giraffe && yarn coverage:ci",
"lint:examples": "yarn eslint --ignore-pattern node_modules ./examples",
"lint:examples:ci": "yarn lint:examples --format junit --output-file ./reports/examples_eslint/eslint.xml"
},
"homepage": "https://github.com/influxdata/influxdb-client-js",
"repository": {
"type": "git",
"url": "git+https://github.com/influxdata/influxdb-client-js"
},
"keywords": [
"influxdb",
"influxdata"
],
"author": {
"name": "InfluxData"
},
"license": "MIT",
"devDependencies": {
"@microsoft/api-documenter": "^7.19.12",
"@types/node": "^22",
"gh-pages": "^6.0.0",
"lerna": "^8.0.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.1"
}
}