package.json 2.3 KB

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