package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@turf/voronoi",
  3. "version": "6.5.0",
  4. "description": "turf voronoi module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Philippe Riviere <@Fil>",
  8. "Mike Bostock <@mbostock>",
  9. "Steve Bennett <@stevage1>",
  10. "Denis Carriere <@DenisCarriere>"
  11. ],
  12. "license": "MIT",
  13. "bugs": {
  14. "url": "https://github.com/Turfjs/turf/issues"
  15. },
  16. "homepage": "https://github.com/Turfjs/turf",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/Turfjs/turf.git"
  20. },
  21. "funding": "https://opencollective.com/turf",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "keywords": [
  26. "turf",
  27. "geometry",
  28. "voronoi",
  29. "polygons",
  30. "points"
  31. ],
  32. "main": "dist/js/index.js",
  33. "module": "dist/es/index.js",
  34. "exports": {
  35. "./package.json": "./package.json",
  36. ".": {
  37. "import": "./dist/es/index.js",
  38. "require": "./dist/js/index.js"
  39. }
  40. },
  41. "types": "index.d.ts",
  42. "sideEffects": false,
  43. "files": [
  44. "dist",
  45. "index.d.ts"
  46. ],
  47. "scripts": {
  48. "bench": "node -r esm bench.js",
  49. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  50. "docs": "node ../../scripts/generate-readmes",
  51. "test": "npm-run-all test:*",
  52. "test:tape": "node -r esm test.js"
  53. },
  54. "devDependencies": {
  55. "benchmark": "*",
  56. "glob": "*",
  57. "load-json-file": "*",
  58. "npm-run-all": "*",
  59. "rollup": "*",
  60. "tape": "*",
  61. "write-json-file": "*"
  62. },
  63. "dependencies": {
  64. "@turf/helpers": "^6.5.0",
  65. "@turf/invariant": "^6.5.0",
  66. "d3-voronoi": "1.1.2"
  67. },
  68. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  69. }