package.json 1.8 KB

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