package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@turf/buffer",
  3. "version": "6.5.0",
  4. "description": "turf buffer module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tom MacWright <@tmcw>",
  8. "Denis Carriere <@DenisCarriere>",
  9. "Stefano Borghi <@stebogit>"
  10. ],
  11. "license": "MIT",
  12. "bugs": {
  13. "url": "https://github.com/Turfjs/turf/issues"
  14. },
  15. "homepage": "https://github.com/Turfjs/turf",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/Turfjs/turf.git"
  19. },
  20. "funding": "https://opencollective.com/turf",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "keywords": [
  25. "buffer",
  26. "offset",
  27. "polygon",
  28. "linestring",
  29. "point",
  30. "geojson",
  31. "turf"
  32. ],
  33. "main": "dist/js/index.js",
  34. "module": "dist/es/index.js",
  35. "exports": {
  36. "./package.json": "./package.json",
  37. ".": {
  38. "import": "./dist/es/index.js",
  39. "require": "./dist/js/index.js"
  40. }
  41. },
  42. "types": "index.d.ts",
  43. "sideEffects": false,
  44. "files": [
  45. "dist",
  46. "index.d.ts"
  47. ],
  48. "scripts": {
  49. "bench": "node -r esm bench.js",
  50. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  51. "docs": "node ../../scripts/generate-readmes",
  52. "test": "npm-run-all test:*",
  53. "test:tape": "node -r esm test.js",
  54. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  55. },
  56. "devDependencies": {
  57. "@turf/truncate": "^6.5.0",
  58. "benchmark": "*",
  59. "load-json-file": "*",
  60. "npm-run-all": "*",
  61. "rollup": "*",
  62. "tape": "*",
  63. "write-json-file": "*"
  64. },
  65. "dependencies": {
  66. "@turf/bbox": "^6.5.0",
  67. "@turf/center": "^6.5.0",
  68. "@turf/helpers": "^6.5.0",
  69. "@turf/meta": "^6.5.0",
  70. "@turf/projection": "^6.5.0",
  71. "d3-geo": "1.7.1",
  72. "turf-jsts": "*"
  73. },
  74. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  75. }