forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.88 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.88 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@hpcc-js/common",
"version": "3.7.0",
"description": "hpcc-js - Viz Common",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./dist/*": "./dist/*",
"./font-awesome/*": "./font-awesome/*"
},
"browser": "./dist/index.umd.cjs",
"types": "./types/index.d.ts",
"files": [
"dist/*",
"src/*",
"types/*",
"font-awesome/**/*"
],
"scripts": {
"clean": "rimraf --glob lib* types dist font-awesome *.tsbuildinfo .turbo",
"bundle": "vite build",
"bundle-watch": "vite --port 5502",
"gen-types": "tsc --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"lint": "eslint ./src",
"lint-fix": "eslint --fix src/**/*.ts",
"docs": "typedoc --options tdoptions.json .",
"test-browser": "vitest run --project browser",
"test": "vitest run",
"coverage": "vitest run --coverage",
"update": "npx --yes npm-check-updates -u -t minor",
"update-major": "npx --yes npm-check-updates -u"
},
"dependencies": {
"@hpcc-js/util": "^3.4.8",
"@types/d3-array": "1.2.12",
"@types/d3-brush": "1.1.8",
"@types/d3-collection": "1.0.13",
"@types/d3-color": "1.4.5",
"@types/d3-dispatch": "1.0.12",
"@types/d3-drag": "1.2.8",
"@types/d3-dsv": "1.2.8",
"@types/d3-ease": "1.0.13",
"@types/d3-format": "1.4.5",
"@types/d3-interpolate": "1.4.5",
"@types/d3-scale": "1.0.22",
"@types/d3-selection": "1.4.7",
"@types/d3-time-format": "2.3.4",
"@types/d3-transition": "1.3.6",
"@types/d3-zoom": "1.8.7"
},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "^1.8.3",
"colorbrewer": "1.6.2",
"d3-array": "^1",
"d3-brush": "^1",
"d3-collection": "^1",
"d3-color": "3.1.0",
"d3-dispatch": "^1",
"d3-drag": "^1",
"d3-dsv": "^1",
"d3-ease": "^1",
"d3-format": "^1",
"d3-interpolate": "^1",
"d3-path": "^1",
"d3-scale": "^1",
"d3-selection": "^1",
"d3-time-format": "^2",
"d3-transition": "^1",
"d3-zoom": "^1",
"font-awesome": "4.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "Gordon Smith <gordonjsmith@gmail.com>",
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}