-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.85 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
{
"private": true,
"description": "InfluxDB 2.x client",
"workspaces": {
"packages": [
"packages/core",
"packages/core-browser",
"packages/apis",
"packages/giraffe"
]
},
"scripts": {
"typedoc": "typedoc --skipErrorChecking",
"typedoc:gh-pages": "yarn typedoc && gh-pages -d ./docs -m 'docs: updates documentation [skip CI]' --dotfiles",
"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": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@microsoft/api-documenter": "^7.19.12",
"@sinonjs/fake-timers": "^15.4.0",
"@types/node": "^26",
"@types/sinon": "^22.0.0",
"eslint": "^10.4.0",
"eslint-formatter-junit": "^9.0.1",
"eslint-plugin-tsdoc": "^0.5.2",
"gh-pages": "^6.0.0",
"globals": "^17.6.0",
"lerna": "^9.0.7",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typedoc": "^0.28.19"
}
}