package.json 1.8 KB

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