-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "d3-geomap",
"version": "4.0.0",
"description": "A library for creating geographical maps based on D3.js",
"keywords": [
"d3",
"d3-module",
"geo",
"geography",
"map",
"svg",
"visualization"
],
"homepage": "https://d3-geomap.github.io",
"author": {
"name": "Ramiro Gómez",
"url": "https://ramiro.org"
},
"license": "MIT",
"main": "dist/d3-geomap.js",
"unpkg": "dist/d3-geomap.min.js",
"jsdelivr": "dist/d3-geomap.min.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/yaph/d3-geomap.git"
},
"type": "module",
"files": [
"src/**/*",
"dist/**/*"
],
"dependencies": {
"d3-array": "^3.2.4",
"d3-fetch": "3",
"d3-format": "^3.1.0",
"d3-geo": "^3.1.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "3",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"topojson": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@playwright/test": "^1.47.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.7.4",
"d3-color": "^3.1.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.47",
"rollup": "^4.24.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.1"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"watch": "rollup -c -w",
"serve": "rollup -c rollup-serve.config.js -w",
"test": "playwright test"
}
}