package.json 1.7 KB

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