package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@turf/rewind",
  3. "version": "7.2.0",
  4. "description": "turf rewind module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Abel Vázquez Montoro <@AbelVM>",
  8. "Tom MacWright <@tmcw>",
  9. "Denis Carriere <@DenisCarriere>",
  10. "Morgan Herlocker <@morganherlocker>"
  11. ],
  12. "license": "MIT",
  13. "bugs": {
  14. "url": "https://github.com/Turfjs/turf/issues"
  15. },
  16. "homepage": "https://github.com/Turfjs/turf",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/Turfjs/turf.git"
  20. },
  21. "funding": "https://opencollective.com/turf",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "keywords": [
  26. "turf",
  27. "geojson",
  28. "polygon",
  29. "rewind"
  30. ],
  31. "type": "module",
  32. "main": "dist/cjs/index.cjs",
  33. "module": "dist/esm/index.js",
  34. "types": "dist/esm/index.d.ts",
  35. "exports": {
  36. "./package.json": "./package.json",
  37. ".": {
  38. "import": {
  39. "types": "./dist/esm/index.d.ts",
  40. "default": "./dist/esm/index.js"
  41. },
  42. "require": {
  43. "types": "./dist/cjs/index.d.cts",
  44. "default": "./dist/cjs/index.cjs"
  45. }
  46. }
  47. },
  48. "sideEffects": false,
  49. "files": [
  50. "dist"
  51. ],
  52. "scripts": {
  53. "bench": "tsx bench.ts",
  54. "build": "tsup --config ../../tsup.config.ts",
  55. "docs": "tsx ../../scripts/generate-readmes.ts",
  56. "test": "npm-run-all --npm-path npm test:*",
  57. "test:tape": "tsx test.ts",
  58. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  59. },
  60. "devDependencies": {
  61. "@types/benchmark": "^2.1.5",
  62. "@types/tape": "^4.13.4",
  63. "benchmark": "^2.1.4",
  64. "load-json-file": "^7.0.1",
  65. "npm-run-all": "^4.1.5",
  66. "tape": "^5.9.0",
  67. "tsup": "^8.3.5",
  68. "tsx": "^4.19.2",
  69. "typescript": "^5.5.4",
  70. "write-json-file": "^5.0.0"
  71. },
  72. "dependencies": {
  73. "@turf/boolean-clockwise": "^7.2.0",
  74. "@turf/clone": "^7.2.0",
  75. "@turf/helpers": "^7.2.0",
  76. "@turf/invariant": "^7.2.0",
  77. "@turf/meta": "^7.2.0",
  78. "@types/geojson": "^7946.0.10",
  79. "tslib": "^2.8.1"
  80. },
  81. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  82. }