package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "@turf/hex-grid",
  3. "version": "6.5.0",
  4. "description": "turf hex-grid module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "James Seppi <@jseppi>",
  8. "Morgan Herlocker <@morganherlocker>",
  9. "Tom MacWright <@tmcw>",
  10. "Jan Vaillant <@jvail>",
  11. "Lyzi Diamond <@lyzidiamond>",
  12. "Denis Carriere <@DenisCarriere>"
  13. ],
  14. "license": "MIT",
  15. "bugs": {
  16. "url": "https://github.com/Turfjs/turf/issues"
  17. },
  18. "homepage": "https://github.com/Turfjs/turf",
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/Turfjs/turf.git"
  22. },
  23. "funding": "https://opencollective.com/turf",
  24. "publishConfig": {
  25. "access": "public"
  26. },
  27. "keywords": [
  28. "turf",
  29. "grid",
  30. "hexgrid",
  31. "hexbin",
  32. "points",
  33. "geojson"
  34. ],
  35. "main": "dist/js/index.js",
  36. "module": "dist/es/index.js",
  37. "exports": {
  38. "./package.json": "./package.json",
  39. ".": {
  40. "import": "./dist/es/index.js",
  41. "require": "./dist/js/index.js"
  42. }
  43. },
  44. "types": "dist/js/index.d.ts",
  45. "sideEffects": false,
  46. "files": [
  47. "dist"
  48. ],
  49. "scripts": {
  50. "bench": "ts-node bench.js",
  51. "build": "npm-run-all build:*",
  52. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  53. "build:js": "tsc",
  54. "docs": "node ../../scripts/generate-readmes",
  55. "test": "npm-run-all test:*",
  56. "test:tape": "ts-node -r esm test.js",
  57. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  58. },
  59. "devDependencies": {
  60. "@turf/bbox-polygon": "^6.5.0",
  61. "@turf/truncate": "^6.5.0",
  62. "@types/tape": "*",
  63. "benchmark": "*",
  64. "load-json-file": "*",
  65. "npm-run-all": "*",
  66. "tape": "*",
  67. "ts-node": "*",
  68. "tslint": "*",
  69. "typescript": "*",
  70. "write-json-file": "*"
  71. },
  72. "dependencies": {
  73. "@turf/distance": "^6.5.0",
  74. "@turf/helpers": "^6.5.0",
  75. "@turf/intersect": "^6.5.0",
  76. "@turf/invariant": "^6.5.0"
  77. },
  78. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  79. }