package.json 1.5 KB

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