package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@turf/clusters-dbscan",
  3. "version": "6.5.0",
  4. "description": "turf clusters-dbscan module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Lukasz <@uhho>",
  8. "Denis Carriere <@DenisCarriere>",
  9. "Stefano Borghi <@stebogit>"
  10. ],
  11. "license": "MIT",
  12. "bugs": {
  13. "url": "https://github.com/Turfjs/turf/issues"
  14. },
  15. "homepage": "https://github.com/Turfjs/turf",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/Turfjs/turf.git"
  19. },
  20. "funding": "https://opencollective.com/turf",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "keywords": [
  25. "turf",
  26. "geojson",
  27. "cluster",
  28. "clusters",
  29. "clustering",
  30. "density",
  31. "dbscan"
  32. ],
  33. "main": "dist/js/index.js",
  34. "module": "dist/es/index.js",
  35. "exports": {
  36. "./package.json": "./package.json",
  37. ".": {
  38. "import": "./dist/es/index.js",
  39. "require": "./dist/js/index.js"
  40. }
  41. },
  42. "types": "dist/js/index.d.ts",
  43. "sideEffects": false,
  44. "files": [
  45. "dist"
  46. ],
  47. "scripts": {
  48. "bench": "ts-node bench.js",
  49. "build": "npm-run-all build:*",
  50. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  51. "build:js": "tsc",
  52. "docs": "node ../../scripts/generate-readmes",
  53. "test": "npm-run-all test:*",
  54. "test:tape": "ts-node -r esm test.js",
  55. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  56. },
  57. "devDependencies": {
  58. "@turf/centroid": "^6.5.0",
  59. "@turf/clusters": "^6.5.0",
  60. "@types/density-clustering": "^1.3.0",
  61. "@types/tape": "*",
  62. "benchmark": "*",
  63. "chromatism": "*",
  64. "concaveman": "*",
  65. "load-json-file": "*",
  66. "npm-run-all": "*",
  67. "tape": "*",
  68. "ts-node": "*",
  69. "tslint": "*",
  70. "typescript": "*",
  71. "write-json-file": "*"
  72. },
  73. "dependencies": {
  74. "@turf/clone": "^6.5.0",
  75. "@turf/distance": "^6.5.0",
  76. "@turf/helpers": "^6.5.0",
  77. "@turf/meta": "^6.5.0",
  78. "density-clustering": "1.3.0"
  79. },
  80. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  81. }