UNPKG

1.38 kBJSONView Raw
1{
2 "name": "d3-delaunay",
3 "version": "5.2.1",
4 "description": "Compute the Voronoi diagram of a set of two-dimensional points.",
5 "keywords": [
6 "voronoi",
7 "delaunay",
8 "geometry"
9 ],
10 "homepage": "https://github.com/d3/d3-delaunay",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/d3/d3-delaunay.git"
14 },
15 "license": "ISC",
16 "author": {
17 "name": "Mike Bostock",
18 "url": "https://bost.ocks.org/mike"
19 },
20 "files": [
21 "dist/**/*.js",
22 "src/**/*.js"
23 ],
24 "contributors": [
25 {
26 "name": "Vladimir Agafonkin",
27 "url": "https://agafonkin.com"
28 },
29 {
30 "name": "Philippe Rivière",
31 "url": "https://visionscarto.net"
32 }
33 ],
34 "main": "dist/d3-delaunay.js",
35 "unpkg": "dist/d3-delaunay.min.js",
36 "module": "src/index.js",
37 "dependencies": {
38 "delaunator": "4"
39 },
40 "sideEffects": false,
41 "devDependencies": {
42 "@observablehq/tape": "~0.0.1",
43 "eslint": "6",
44 "esm": "3",
45 "rollup": "1",
46 "rollup-plugin-node-resolve": "5",
47 "rollup-plugin-terser": "5"
48 },
49 "scripts": {
50 "test": "tape -r esm 'test/**/*-test.js' && eslint src test",
51 "prepublishOnly": "yarn test && rm -rf dist && rollup -c",
52 "postpublish": "git push && git push --tags && zip -j dist/${npm_package_name}.zip -- LICENSE README.md dist/${npm_package_name}.js dist/${npm_package_name}.min.js"
53 }
54}