package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@turf/ellipse",
  3. "version": "6.5.0",
  4. "description": "turf ellipse 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. "turf",
  24. "ellipse"
  25. ],
  26. "main": "dist/js/index.js",
  27. "module": "dist/es/index.js",
  28. "exports": {
  29. "./package.json": "./package.json",
  30. ".": {
  31. "import": "./dist/es/index.js",
  32. "require": "./dist/js/index.js"
  33. }
  34. },
  35. "types": "index.d.ts",
  36. "sideEffects": false,
  37. "files": [
  38. "dist",
  39. "index.d.ts"
  40. ],
  41. "scripts": {
  42. "bench": "node -r esm bench.js",
  43. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  44. "docs": "node ../../scripts/generate-readmes",
  45. "test": "npm-run-all test:*",
  46. "test:tape": "node -r esm test.js"
  47. },
  48. "devDependencies": {
  49. "@mapbox/geojsonhint": "*",
  50. "@turf/bbox-polygon": "^6.5.0",
  51. "@turf/circle": "^6.5.0",
  52. "@turf/destination": "^6.5.0",
  53. "@turf/truncate": "^6.5.0",
  54. "benchmark": "*",
  55. "glob": "*",
  56. "load-json-file": "*",
  57. "npm-run-all": "*",
  58. "rollup": "*",
  59. "tape": "*",
  60. "write-json-file": "*"
  61. },
  62. "dependencies": {
  63. "@turf/helpers": "^6.5.0",
  64. "@turf/invariant": "^6.5.0",
  65. "@turf/rhumb-destination": "^6.5.0",
  66. "@turf/transform-rotate": "^6.5.0"
  67. },
  68. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  69. }