package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@turf/destination",
  3. "version": "6.5.0",
  4. "description": "turf destination module",
  5. "author": "Turf Authors",
  6. "license": "MIT",
  7. "bugs": {
  8. "url": "https://github.com/Turfjs/turf/issues"
  9. },
  10. "homepage": "https://github.com/Turfjs/turf",
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/Turfjs/turf.git"
  14. },
  15. "funding": "https://opencollective.com/turf",
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "keywords": [
  20. "turf",
  21. "distance",
  22. "destination",
  23. "bearing",
  24. "miles",
  25. "km"
  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": "dist/js/index.d.ts",
  37. "sideEffects": false,
  38. "files": [
  39. "dist"
  40. ],
  41. "scripts": {
  42. "bench": "ts-node bench.js",
  43. "build": "npm-run-all build:*",
  44. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  45. "build:js": "tsc",
  46. "docs": "node ../../scripts/generate-readmes",
  47. "test": "npm-run-all test:*",
  48. "test:tape": "ts-node -r esm test.js"
  49. },
  50. "devDependencies": {
  51. "@turf/truncate": "^6.5.0",
  52. "@types/tape": "*",
  53. "benchmark": "*",
  54. "glob": "*",
  55. "load-json-file": "*",
  56. "npm-run-all": "*",
  57. "tape": "*",
  58. "ts-node": "*",
  59. "tslint": "*",
  60. "typescript": "*",
  61. "write-json-file": "*"
  62. },
  63. "dependencies": {
  64. "@turf/helpers": "^6.5.0",
  65. "@turf/invariant": "^6.5.0"
  66. },
  67. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  68. }