package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "@turf/isolines",
  3. "version": "7.2.0",
  4. "description": "turf isolines module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Stefano Borghi <@stebogit>"
  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. "isolines",
  26. "contours",
  27. "elevation",
  28. "topography"
  29. ],
  30. "type": "module",
  31. "main": "dist/cjs/index.cjs",
  32. "module": "dist/esm/index.js",
  33. "types": "dist/esm/index.d.ts",
  34. "exports": {
  35. "./package.json": "./package.json",
  36. ".": {
  37. "import": {
  38. "types": "./dist/esm/index.d.ts",
  39. "default": "./dist/esm/index.js"
  40. },
  41. "require": {
  42. "types": "./dist/cjs/index.d.cts",
  43. "default": "./dist/cjs/index.cjs"
  44. }
  45. }
  46. },
  47. "sideEffects": false,
  48. "files": [
  49. "dist"
  50. ],
  51. "scripts": {
  52. "bench": "tsx bench.ts",
  53. "build": "tsup --config ../../tsup.config.ts",
  54. "docs": "tsx ../../scripts/generate-readmes.ts",
  55. "test": "npm-run-all --npm-path npm test:*",
  56. "test:tape": "tsx test.ts",
  57. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  58. },
  59. "devDependencies": {
  60. "@turf/envelope": "^7.2.0",
  61. "@turf/point-grid": "^7.2.0",
  62. "@turf/random": "^7.2.0",
  63. "@turf/rhumb-destination": "^7.2.0",
  64. "@turf/truncate": "^7.2.0",
  65. "@types/benchmark": "^2.1.5",
  66. "@types/tape": "^4.13.4",
  67. "benchmark": "^2.1.4",
  68. "load-json-file": "^7.0.1",
  69. "npm-run-all": "^4.1.5",
  70. "tape": "^5.9.0",
  71. "tsup": "^8.3.5",
  72. "tsx": "^4.19.2",
  73. "typescript": "^5.5.4",
  74. "write-json-file": "^5.0.0"
  75. },
  76. "dependencies": {
  77. "@turf/bbox": "^7.2.0",
  78. "@turf/helpers": "^7.2.0",
  79. "@turf/invariant": "^7.2.0",
  80. "@turf/meta": "^7.2.0",
  81. "@types/geojson": "^7946.0.10",
  82. "marchingsquares": "^1.3.3",
  83. "tslib": "^2.8.1"
  84. },
  85. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  86. }