-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.66 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": "cartogram-chart",
"version": "1.3.1",
"description": "Cartogram web component for visualizing geographical data by distorting a TopoJson topology",
"type": "module",
"unpkg": "dist/cartogram-chart.min.js",
"jsdelivr": "dist/cartogram-chart.min.js",
"main": "dist/cartogram-chart.mjs",
"module": "dist/cartogram-chart.mjs",
"exports": {
"umd": "./dist/cartogram-chart.min.js",
"default": "./dist/cartogram-chart.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/cartogram-chart.git"
},
"keywords": [
"cartogram",
"geographical",
"visualization",
"distortion",
"topojson"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/cartogram-chart/issues"
},
"homepage": "https://github.com/vasturiano/cartogram-chart",
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"prepare": "npm run build"
},
"dependencies": {
"accessor-fn": "1",
"d3-geo": "2 - 3",
"d3-selection": "2 - 3",
"d3-transition": "2 - 3",
"kapsule": "^1.14",
"topogram": "^1.0.1"
},
"files": [
"dist/**/*",
"example/**/*"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"postcss": "^8.4.21",
"rimraf": "^4.1.2",
"rollup": "^3.14.0",
"rollup-plugin-postcss": "^4.0.2"
},
"engines": {
"node": ">=12"
}
}