source: node_modules/d3-delaunay/package.json

Last change on this file was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 1.4 KB
Line 
1{
2 "name": "d3-delaunay",
3 "version": "6.0.4",
4 "description": "Compute the Voronoi diagram of a set of two-dimensional points.",
5 "homepage": "https://github.com/d3/d3-delaunay",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/d3/d3-delaunay.git"
9 },
10 "keywords": [
11 "voronoi",
12 "delaunay",
13 "geometry"
14 ],
15 "license": "ISC",
16 "author": {
17 "name": "Mike Bostock",
18 "url": "https://bost.ocks.org/mike"
19 },
20 "contributors": [
21 {
22 "name": "Vladimir Agafonkin",
23 "url": "https://agafonkin.com"
24 },
25 {
26 "name": "Philippe Rivière",
27 "url": "https://visionscarto.net"
28 }
29 ],
30 "type": "module",
31 "files": [
32 "dist/**/*.js",
33 "src/**/*.js"
34 ],
35 "module": "src/index.js",
36 "main": "src/index.js",
37 "jsdelivr": "dist/d3-delaunay.min.js",
38 "unpkg": "dist/d3-delaunay.min.js",
39 "exports": {
40 "umd": "./dist/d3-delaunay.min.js",
41 "default": "./src/index.js"
42 },
43 "sideEffects": false,
44 "dependencies": {
45 "delaunator": "5"
46 },
47 "devDependencies": {
48 "@rollup/plugin-node-resolve": "13",
49 "eslint": "7",
50 "mocha": "8",
51 "rollup": "2",
52 "rollup-plugin-terser": "7"
53 },
54 "scripts": {
55 "test": "mocha 'test/**/*-test.js' && eslint src test",
56 "prepublishOnly": "rm -rf dist && yarn test && rollup -c",
57 "postpublish": "git push && git push --tags"
58 },
59 "engines": {
60 "node": ">=12"
61 }
62}
Note: See TracBrowser for help on using the repository browser.