package.json 1.8 KB

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