forked from vasturiano/sunburst-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "sunburst-chart",
"version": "1.15.2",
"description": "Sunburst interactive chart web component for visualizing hierarchical data",
"license": "MIT",
"unpkg": "dist/sunburst-chart.min.js",
"jsdelivr": "dist/sunburst-chart.min.js",
"main": "dist/sunburst-chart.common.js",
"module": "dist/sunburst-chart.module.js",
"types": "dist/sunburst-chart.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/sunburst-chart.git"
},
"homepage": "https://github.com/vasturiano/sunburst-chart",
"keywords": [
"d3",
"d3-module",
"sunburst",
"hierarchical",
"graph",
"svg"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://bl.ocks.org/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/sunburst-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-path": "1 - 3",
"d3-scale": "1 - 4",
"d3-selection": "2 - 3",
"d3-shape": "1 - 3",
"d3-transition": "2 - 3",
"kapsule": "^1.13"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"postcss": "^8.3.6",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.2"
}
}