package.json 1.6 KB

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