package.json 1.8 KB

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