package.json 1.8 KB

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