package.json 1.8 KB

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