package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "@turf/meta",
  3. "version": "7.2.0",
  4. "description": "turf meta module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tom MacWright <@tmcw>",
  8. "Daniel Pulido <@dpmcmlxxvi>",
  9. "Denis Carriere <@DenisCarriere>"
  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. "functional",
  26. "programming",
  27. "turfjs",
  28. "geojson",
  29. "meta",
  30. "flattenEach",
  31. "flattenReduce",
  32. "segmentEach",
  33. "segmentReduce",
  34. "coordEach",
  35. "coordReduce",
  36. "propEach",
  37. "propReduce",
  38. "featureEach",
  39. "featureReduce",
  40. "coordAll",
  41. "geomEach",
  42. "geomReduce",
  43. "lineEeach",
  44. "lineReduce"
  45. ],
  46. "type": "module",
  47. "main": "dist/cjs/index.cjs",
  48. "module": "dist/esm/index.js",
  49. "types": "dist/esm/index.d.ts",
  50. "exports": {
  51. "./package.json": "./package.json",
  52. ".": {
  53. "import": {
  54. "types": "./dist/esm/index.d.ts",
  55. "default": "./dist/esm/index.js"
  56. },
  57. "require": {
  58. "types": "./dist/cjs/index.d.cts",
  59. "default": "./dist/cjs/index.cjs"
  60. }
  61. }
  62. },
  63. "sideEffects": false,
  64. "files": [
  65. "dist"
  66. ],
  67. "scripts": {
  68. "bench": "tsx bench.ts",
  69. "build": "tsup --config ../../tsup.config.ts",
  70. "docs": "tsx ../../scripts/generate-readmes.ts",
  71. "test": "npm-run-all --npm-path npm test:*",
  72. "test:tape": "tsx test.ts",
  73. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  74. },
  75. "devDependencies": {
  76. "@turf/random": "^7.2.0",
  77. "@types/benchmark": "^2.1.5",
  78. "benchmark": "^2.1.4",
  79. "npm-run-all": "^4.1.5",
  80. "tape": "^5.9.0",
  81. "tsup": "^8.3.5",
  82. "tsx": "^4.19.2"
  83. },
  84. "dependencies": {
  85. "@turf/helpers": "^7.2.0",
  86. "@types/geojson": "^7946.0.10"
  87. },
  88. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  89. }