forked from d3/d3-geo-polygon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "d3-geo-polygon",
"version": "1.12.1",
"description": "Clipping and geometric operations for spherical polygons.",
"keywords": [
"d3",
"d3-module",
"cartography",
"projection",
"polygon"
],
"homepage": "https://github.com/d3/d3-geo-polygon",
"license": "ISC",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"contributors": [
{
"name": "Jason Davies",
"url": "http://www.jasondavies.com"
},
{
"name": "Philippe Rivière",
"url": "https://visionscarto.net"
}
],
"main": "dist/d3-geo-polygon.js",
"unpkg": "dist/d3-geo-polygon.min.js",
"jsdelivr": "dist/d3-geo-polygon.min.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3-geo-polygon.git"
},
"scripts": {
"pretest": "rollup -c",
"test": "tape 'test/**/*-test.js' && eslint src",
"prepublishOnly": "rm -rf dist && yarn test && mkdir -p test/output && test/compare-images",
"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"
},
"dependencies": {
"d3-array": "1 - 2",
"d3-geo": "1.12.0 - 2"
},
"sideEffects": false,
"devDependencies": {
"canvas": "1 - 2",
"eslint": "5",
"rollup": "0.64",
"rollup-plugin-terser": "1",
"tape": "4",
"topojson-client": "3",
"world-atlas": "1"
},
"engines": {
"node": ">=6.0.0"
}
}