package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@turf/meta",
  3. "version": "6.5.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. "main": "dist/js/index.js",
  47. "module": "dist/es/index.js",
  48. "exports": {
  49. "./package.json": "./package.json",
  50. ".": {
  51. "import": "./dist/es/index.js",
  52. "require": "./dist/js/index.js"
  53. }
  54. },
  55. "types": "index.d.ts",
  56. "sideEffects": false,
  57. "files": [
  58. "dist",
  59. "index.d.ts"
  60. ],
  61. "scripts": {
  62. "bench": "node -r esm bench.js",
  63. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  64. "docs": "node ../../scripts/generate-readmes",
  65. "test": "npm-run-all test:*",
  66. "test:tape": "node -r esm test.js",
  67. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  68. },
  69. "devDependencies": {
  70. "@turf/random": "^6.5.0",
  71. "benchmark": "*",
  72. "npm-run-all": "*",
  73. "rollup": "*",
  74. "tape": "*"
  75. },
  76. "dependencies": {
  77. "@turf/helpers": "^6.5.0"
  78. },
  79. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  80. }