package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@turf/tesselate",
  3. "version": "6.5.0",
  4. "description": "turf tesselate module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Abel Vázquez <@AbelVM>",
  8. "Morgan Herlocker <@morganherlocker>",
  9. "Tom MacWright <@tmcw>",
  10. "Vladimir Agafonkin <@mourner>"
  11. ],
  12. "license": "MIT",
  13. "bugs": {
  14. "url": "https://github.com/Turfjs/turf/issues"
  15. },
  16. "homepage": "https://github.com/Turfjs/turf",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/Turfjs/turf.git"
  20. },
  21. "funding": "https://opencollective.com/turf",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "keywords": [
  26. "turf",
  27. "turfjs",
  28. "tesselation",
  29. "earcut",
  30. "polygon",
  31. "triangles"
  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. },
  55. "devDependencies": {
  56. "benchmark": "*",
  57. "npm-run-all": "*",
  58. "rollup": "*",
  59. "tape": "*"
  60. },
  61. "dependencies": {
  62. "@turf/helpers": "^6.5.0",
  63. "earcut": "^2.0.0"
  64. },
  65. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  66. }