-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.12 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hpcc-js",
"version": "3.27.0",
"description": "HPCC Visualization Framework",
"private": true,
"type": "module",
"jsdelivr": "dist/index.umd.min.js",
"workspaces": [
"packages/*"
],
"scripts": {
"install-deps": "npx -y playwright install --with-deps",
"uninstall-lock": "rimraf --glob package-lock.json packages/**/package-lock.json demos/**/package-lock.json tests/**/package-lock.json",
"uninstall-node-modules": "rimraf --glob node_modules packages/**/node_modules demos/**/node_modules tests/**/node_modules",
"uninstall": "lerna clean && npm run uninstall-node-modules",
"clean-root": "rimraf --glob build coverage dist lib* types types-3.4 temp tmp *.tsbuildinfo .vitepress/dist .vitepress/cache docs/api",
"clean": "lerna run clean --no-sort && npm run clean-root",
"build": "lerna run build",
"lint": "lerna run --no-bail lint",
"lint-fix": "lerna run --no-bail lint -- --fix",
"test-browser": "vitest run --project browser",
"test-browser-esm": "cd tests/browser-esm && npm i && npm test",
"test-browser-umd": "cd tests/browser-umd && npm i && npm test",
"test-webpack-browser-umd": "cd tests/webpack-browser-umd && npm i && npm test",
"test-node": "vitest run --project node",
"test-node-esm": "cd tests/node-esm && npm i && npm test",
"test-node-cjs": "cd tests/node-cjs && npm i && npm test",
"test-type-leaks": "cd tests/type-leaks && npm i && npm test",
"test": "lerna run test",
"test-ci": "cross-env ci=1 lerna run test",
"test-all": "vitest run",
"bump-point-versions": "lerna version patch --no-git-tag-version --yes --no-push",
"publish": "lerna publish from-package --yes",
"publish-force": "lerna publish patch --yes",
"update-workspaces": "lerna run update --no-sort --stream",
"update-major-workspaces": "lerna run update-major --no-sort --stream",
"update-root": "npx npm-check-updates -u -t minor",
"update-major-root": "npx npm-check-updates -u",
"update": "run-p update-workspaces update-root",
"update-major": "run-p update-major-workspaces update-major-root"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/esbuild-copy-static-files": "0.1.4",
"@typescript-eslint/parser": "8.60.0",
"@typescript/native-preview": "7.0.0-dev.20260527.2",
"@vitest/browser": "4.1.8",
"@vitest/browser-playwright": "4.1.8",
"@vitest/coverage-v8": "4.1.8",
"cross-env": "10.1.0",
"esbuild": "0.28.0",
"eslint": "10.4.1",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.6.0",
"jiti": "2.7.0",
"lerna": "9.0.7",
"npm-run-all": "4.1.5",
"playwright": "1.60.0",
"rimraf": "6.1.3",
"tmp": "0.2.7",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vite": "8.0.16",
"vitepress": "1.6.4",
"vitest": "4.1.8"
},
"overrides": {
"d3-color": "3.1.0",
"esbuild": "0.28.0",
"tmp": "0.2.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "HPCC Systems",
"license": "Apache-2.0",
"homepage": "https://github.com/hpcc-systems/Visualization"
}