-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
62 lines (62 loc) · 1.38 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
{
"name": "d3-delaunay",
"version": "6.0.4",
"description": "Compute the Voronoi diagram of a set of two-dimensional points.",
"homepage": "https://github.com/d3/d3-delaunay",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3-delaunay.git"
},
"keywords": [
"voronoi",
"delaunay",
"geometry"
],
"license": "ISC",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"contributors": [
{
"name": "Vladimir Agafonkin",
"url": "https://agafonkin.com"
},
{
"name": "Philippe Rivière",
"url": "https://visionscarto.net"
}
],
"type": "module",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/d3-delaunay.min.js",
"unpkg": "dist/d3-delaunay.min.js",
"exports": {
"umd": "./dist/d3-delaunay.min.js",
"default": "./src/index.js"
},
"sideEffects": false,
"dependencies": {
"delaunator": "5"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13",
"eslint": "7",
"mocha": "8",
"rollup": "2",
"rollup-plugin-terser": "7"
},
"scripts": {
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "rm -rf dist && yarn test && rollup -c",
"postpublish": "git push && git push --tags"
},
"engines": {
"node": ">=12"
}
}