50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "delaunator",
|
|
"version": "5.1.0",
|
|
"description": "An incredibly fast JavaScript library for Delaunay triangulation of 2D points",
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"type": "module",
|
|
"types": "index.d.ts",
|
|
"jsdelivr": "delaunator.min.js",
|
|
"unpkg": "delaunator.min.js",
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"robust-predicates": "^3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"@rollup/plugin-terser": "^1.0.0",
|
|
"eslint": "^10.1.0",
|
|
"eslint-config-mourner": "^4.1.0",
|
|
"rollup": "^4.59.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"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": "tsc && 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",
|
|
"index.d.ts",
|
|
"delaunator.js",
|
|
"delaunator.min.js"
|
|
],
|
|
"keywords": [
|
|
"delaunay triangulation",
|
|
"computational geometry",
|
|
"algorithms"
|
|
],
|
|
"author": "Vladimir Agafonkin",
|
|
"license": "ISC"
|
|
}
|