package.json 1.6 KB

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