package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@turf/shortest-path",
  3. "version": "6.5.0",
  4. "description": "turf shortest-path module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Stefano Borghi <@stebogit>",
  8. "Denis Carriere <@DenisCarriere>"
  9. ],
  10. "license": "MIT",
  11. "bugs": {
  12. "url": "https://github.com/Turfjs/turf/issues"
  13. },
  14. "homepage": "https://github.com/Turfjs/turf",
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/Turfjs/turf.git"
  18. },
  19. "funding": "https://opencollective.com/turf",
  20. "publishConfig": {
  21. "access": "public"
  22. },
  23. "keywords": [
  24. "turf",
  25. "shortest-path",
  26. "path"
  27. ],
  28. "main": "dist/js/index.js",
  29. "module": "dist/es/index.js",
  30. "exports": {
  31. "./package.json": "./package.json",
  32. ".": {
  33. "import": "./dist/es/index.js",
  34. "require": "./dist/js/index.js"
  35. }
  36. },
  37. "types": "index.d.ts",
  38. "sideEffects": false,
  39. "files": [
  40. "dist",
  41. "index.d.ts"
  42. ],
  43. "scripts": {
  44. "bench": "node -r esm bench.js",
  45. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  46. "docs": "node ../../scripts/generate-readmes",
  47. "test": "npm-run-all test:*",
  48. "test:tape": "node -r esm test.js",
  49. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  50. },
  51. "devDependencies": {
  52. "@turf/truncate": "^6.5.0",
  53. "benchmark": "*",
  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/bbox-polygon": "^6.5.0",
  63. "@turf/boolean-point-in-polygon": "^6.5.0",
  64. "@turf/clean-coords": "^6.5.0",
  65. "@turf/distance": "^6.5.0",
  66. "@turf/helpers": "^6.5.0",
  67. "@turf/invariant": "^6.5.0",
  68. "@turf/meta": "^6.5.0",
  69. "@turf/transform-scale": "^6.5.0"
  70. },
  71. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  72. }