package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@turf/rhumb-destination",
  3. "version": "6.5.0",
  4. "description": "turf rhumb-destination module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Chris Veness <@chrisveness>",
  8. "Stefano Borghi <@stebogit>",
  9. "Denis Carriere <@DenisCarriere>"
  10. ],
  11. "license": "MIT",
  12. "bugs": {
  13. "url": "https://github.com/Turfjs/turf/issues"
  14. },
  15. "homepage": "https://github.com/Turfjs/turf",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/Turfjs/turf.git"
  19. },
  20. "funding": "https://opencollective.com/turf",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "keywords": [
  25. "turf",
  26. "distance",
  27. "destination",
  28. "bearing",
  29. "loxodrome",
  30. "rhumb",
  31. "rhumb line",
  32. "miles",
  33. "km"
  34. ],
  35. "main": "dist/js/index.js",
  36. "module": "dist/es/index.js",
  37. "exports": {
  38. "./package.json": "./package.json",
  39. ".": {
  40. "import": "./dist/es/index.js",
  41. "require": "./dist/js/index.js"
  42. }
  43. },
  44. "types": "dist/js/index.d.ts",
  45. "sideEffects": false,
  46. "files": [
  47. "dist"
  48. ],
  49. "scripts": {
  50. "bench": "ts-node bench.js",
  51. "build": "npm-run-all build:*",
  52. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  53. "build:js": "tsc",
  54. "docs": "node ../../scripts/generate-readmes",
  55. "test": "npm-run-all test:*",
  56. "test:tape": "ts-node -r esm test.js"
  57. },
  58. "devDependencies": {
  59. "@turf/truncate": "^6.5.0",
  60. "@types/tape": "*",
  61. "benchmark": "*",
  62. "load-json-file": "*",
  63. "npm-run-all": "*",
  64. "tape": "*",
  65. "ts-node": "*",
  66. "tslint": "*",
  67. "typescript": "*",
  68. "write-json-file": "*"
  69. },
  70. "dependencies": {
  71. "@turf/helpers": "^6.5.0",
  72. "@turf/invariant": "^6.5.0"
  73. },
  74. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  75. }