-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "delaunator",
"version": "5.0.1",
"description": "An incredibly fast JavaScript library for Delaunay triangulation of 2D points",
"main": "index.js",
"module": "index.js",
"type": "module",
"jsdelivr": "delaunator.min.js",
"unpkg": "delaunator.min.js",
"sideEffects": false,
"dependencies": {
"robust-predicates": "^3.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.11.1",
"eslint-config-mourner": "^4.0.2",
"rollup": "^4.24.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/delaunator.git"
},
"scripts": {
"lint": "eslint index.js test/test.js bench.js rollup.config.js docs/diagrams.js",
"pretest": "npm run lint",
"test": "node test/test.js",
"cov": "node --experimental-test-coverage test/test.js",
"bench": "node bench.js",
"build": "rollup -c",
"start": "rollup -cw",
"prepublishOnly": "npm test && npm run build"
},
"files": [
"index.js",
"delaunator.js",
"delaunator.min.js"
],
"keywords": [
"delaunay triangulation",
"computational geometry",
"algorithms"
],
"author": "Vladimir Agafonkin",
"license": "ISC"
}