-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
84 lines (84 loc) · 1.91 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
75
76
77
78
79
80
81
82
83
84
{
"name": "d3-geo-polygon",
"version": "2.0.1",
"description": "Clipping and geometric operations for spherical polygons.",
"homepage": "https://github.com/d3/d3-geo-polygon",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3-geo-polygon.git"
},
"keywords": [
"d3",
"d3-module",
"cartography",
"projection",
"polygon"
],
"license": "ISC",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"contributors": [
{
"name": "Jason Davies",
"url": "https://www.jasondavies.com"
},
{
"name": "Philippe Rivière",
"url": "https://visionscarto.net"
},
{
"name": "Enrico Spinielli",
"url": "https://enrico.spinielli.net/"
},
{
"name": "Ronnie Bathoorn",
"url": "https://github.com/bathoorn"
}
],
"type": "module",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/d3-geo-polygon.min.js",
"unpkg": "dist/d3-geo-polygon.min.js",
"exports": {
"umd": "./dist/d3-geo-polygon.min.js",
"default": "./src/index.js"
},
"sideEffects": false,
"dependencies": {
"d3-array": "2.5.0 - 3",
"d3-geo": "2 - 3",
"d3-geo-projection": "4"
},
"devDependencies": {
"@observablehq/framework": "^1.12.0",
"@rollup/plugin-terser": "0.4",
"canvas": "2",
"eslint": "8",
"mocha": "10",
"pixelmatch": "5",
"pngjs": "6",
"rollup": "3",
"sharp": "^0.33.5",
"topojson-client": "3",
"world-atlas": "2"
},
"scripts": {
"docs:dev": "observable preview",
"docs:build": "observable build",
"docs:deploy": "observable deploy",
"build": "yarn docs:build",
"deploy": "yarn docs:deploy",
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "rm -rf dist && rollup -c"
},
"engines": {
"node": ">=18"
}
}