package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@turf/line-overlap",
  3. "version": "6.5.0",
  4. "description": "turf line-overlap module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Denis Carriere <@DenisCarriere>"
  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. "line",
  27. "overlap"
  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. "@types/deep-equal": "^1.0.1",
  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/boolean-point-on-line": "^6.5.0",
  67. "@turf/helpers": "^6.5.0",
  68. "@turf/invariant": "^6.5.0",
  69. "@turf/line-segment": "^6.5.0",
  70. "@turf/meta": "^6.5.0",
  71. "@turf/nearest-point-on-line": "^6.5.0",
  72. "deep-equal": "1.x",
  73. "geojson-rbush": "3.x"
  74. },
  75. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  76. }