package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@turf/isolines",
  3. "version": "6.5.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. "main": "dist/js/index.js",
  31. "module": "dist/es/index.js",
  32. "exports": {
  33. "./package.json": "./package.json",
  34. ".": {
  35. "import": "./dist/es/index.js",
  36. "require": "./dist/js/index.js"
  37. }
  38. },
  39. "types": "index.d.ts",
  40. "sideEffects": false,
  41. "files": [
  42. "dist",
  43. "index.d.ts"
  44. ],
  45. "scripts": {
  46. "bench": "node -r esm bench.js",
  47. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  48. "docs": "node ../../scripts/generate-readmes",
  49. "test": "npm-run-all test:*",
  50. "test:tape": "node -r esm test.js",
  51. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  52. },
  53. "devDependencies": {
  54. "@turf/envelope": "^6.5.0",
  55. "@turf/point-grid": "^6.5.0",
  56. "@turf/random": "^6.5.0",
  57. "@turf/rhumb-destination": "^6.5.0",
  58. "@turf/truncate": "^6.5.0",
  59. "benchmark": "*",
  60. "load-json-file": "*",
  61. "matrix-to-grid": "*",
  62. "npm-run-all": "*",
  63. "rollup": "*",
  64. "tape": "*",
  65. "write-json-file": "*"
  66. },
  67. "dependencies": {
  68. "@turf/bbox": "^6.5.0",
  69. "@turf/helpers": "^6.5.0",
  70. "@turf/invariant": "^6.5.0",
  71. "@turf/meta": "^6.5.0",
  72. "object-assign": "*"
  73. },
  74. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  75. }