package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "@turf/isobands",
  3. "version": "6.5.0",
  4. "description": "turf isobands 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. "contours",
  26. "isobands",
  27. "elevation",
  28. "topography",
  29. "filled"
  30. ],
  31. "main": "dist/js/index.js",
  32. "module": "dist/es/index.js",
  33. "exports": {
  34. "./package.json": "./package.json",
  35. ".": {
  36. "import": "./dist/es/index.js",
  37. "require": "./dist/js/index.js"
  38. }
  39. },
  40. "types": "index.d.ts",
  41. "sideEffects": false,
  42. "files": [
  43. "dist",
  44. "index.d.ts"
  45. ],
  46. "scripts": {
  47. "bench": "node -r esm bench.js",
  48. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  49. "docs": "node ../../scripts/generate-readmes",
  50. "test": "npm-run-all test:*",
  51. "test:tape": "node -r esm test.js"
  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. "chroma-js": "*",
  61. "load-json-file": "*",
  62. "matrix-to-grid": "*",
  63. "npm-run-all": "*",
  64. "rollup": "*",
  65. "tape": "*",
  66. "write-json-file": "*"
  67. },
  68. "dependencies": {
  69. "@turf/area": "^6.5.0",
  70. "@turf/bbox": "^6.5.0",
  71. "@turf/boolean-point-in-polygon": "^6.5.0",
  72. "@turf/explode": "^6.5.0",
  73. "@turf/helpers": "^6.5.0",
  74. "@turf/invariant": "^6.5.0",
  75. "@turf/meta": "^6.5.0",
  76. "object-assign": "*"
  77. },
  78. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  79. }