UNPKG

1.55 kBJSONView Raw
1{
2 "name": "d3-geo-polygon",
3 "version": "1.9.0",
4 "description": "Clipping and geometric operations for spherical polygons.",
5 "keywords": [
6 "d3",
7 "d3-module",
8 "cartography",
9 "projection",
10 "polygon"
11 ],
12 "homepage": "https://github.com/d3/d3-geo-polygon",
13 "license": "ISC",
14 "author": {
15 "name": "Mike Bostock",
16 "url": "https://bost.ocks.org/mike"
17 },
18 "contributors": [
19 {
20 "name": "Jason Davies",
21 "url": "http://www.jasondavies.com"
22 },
23 {
24 "name": "Philippe Rivière",
25 "url": "https://visionscarto.net"
26 }
27 ],
28 "main": "dist/d3-geo-polygon.js",
29 "unpkg": "dist/d3-geo-polygon.min.js",
30 "jsdelivr": "dist/d3-geo-polygon.min.js",
31 "module": "src/index.js",
32 "repository": {
33 "type": "git",
34 "url": "https://github.com/d3/d3-geo-polygon.git"
35 },
36 "scripts": {
37 "pretest": "rollup -c",
38 "test": "tape 'test/**/*-test.js' && eslint src",
39 "prepublishOnly": "rm -rf dist && yarn test && mkdir -p test/output && test/compare-images",
40 "postpublish": "git push && git push --tags && zip -j dist/d3-geo-polygon.zip -- LICENSE README.md dist/d3-geo-polygon.js dist/d3-geo-polygon.min.js"
41 },
42 "dependencies": {
43 "d3-array": "1 - 2",
44 "d3-geo": "^1.11.1"
45 },
46 "sideEffects": false,
47 "devDependencies": {
48 "canvas": "1",
49 "eslint": "5",
50 "rollup": "0.64",
51 "rollup-plugin-terser": "1",
52 "tape": "4",
53 "topojson-client": "3",
54 "world-atlas": "1"
55 },
56 "engines": {
57 "node": ">=6.0.0 <=10.17.0"
58 },
59 "engine-strict": true
60}