package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@turf/dissolve",
  3. "version": "6.5.0",
  4. "description": "turf dissolve 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. "keywords": [
  20. "turf",
  21. "dissolve",
  22. "gis",
  23. "geojson",
  24. "polygon"
  25. ],
  26. "main": "dist/js/index.js",
  27. "module": "dist/es/index.js",
  28. "exports": {
  29. "./package.json": "./package.json",
  30. ".": {
  31. "import": "./dist/es/index.js",
  32. "require": "./dist/js/index.js"
  33. }
  34. },
  35. "types": "index.d.ts",
  36. "sideEffects": false,
  37. "files": [
  38. "dist",
  39. "index.d.ts"
  40. ],
  41. "scripts": {
  42. "bench": "node -r esm bench.js",
  43. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  44. "docs": "node ../../scripts/generate-readmes",
  45. "test": "npm-run-all test:*",
  46. "test:tape": "node -r esm test.js"
  47. },
  48. "devDependencies": {
  49. "benchmark": "*",
  50. "load-json-file": "*",
  51. "npm-run-all": "*",
  52. "rollup": "*",
  53. "tape": "*",
  54. "write-json-file": "*"
  55. },
  56. "dependencies": {
  57. "@turf/helpers": "^6.5.0",
  58. "@turf/invariant": "^6.5.0",
  59. "@turf/meta": "^6.5.0",
  60. "polygon-clipping": "^0.15.3"
  61. },
  62. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  63. }