package.json 1.9 KB

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