generated from vasturiano/ui-module
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
74 lines (74 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "icicle-chart",
"version": "1.8.0",
"description": "A partition / icicle interactive chart web component for visualizing hierarchical data",
"license": "MIT",
"type": "module",
"unpkg": "dist/icicle-chart.min.js",
"jsdelivr": "dist/icicle-chart.min.js",
"main": "dist/icicle-chart.mjs",
"module": "dist/icicle-chart.mjs",
"types": "dist/icicle-chart.d.ts",
"exports": {
"umd": "./dist/icicle-chart.min.js",
"default": "./dist/icicle-chart.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/icicle-chart.git"
},
"homepage": "https://github.com/vasturiano/icicle-chart",
"keywords": [
"icicle",
"partition",
"chart",
"data-visualization",
"d3",
"hierarchical",
"svg"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/icicle-chart/issues"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"dependencies": {
"accessor-fn": "1",
"d3-hierarchy": "1 - 3",
"d3-interpolate": "1 - 3",
"d3-scale": "1 - 4",
"d3-selection": "2 - 3",
"d3-transition": "2 - 3",
"d3-zoomable": "1",
"float-tooltip": "1",
"kapsule": "^1.14",
"tinycolor2": "^1.6"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"postcss": "^8.4.47",
"rimraf": "^6.0.1",
"rollup": "^4.22.5",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=12"
}
}