package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@turf/projection",
  3. "version": "6.5.0",
  4. "description": "turf projection module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Stefano Borghi <@stebogit>"
  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. "projection",
  25. "to-mercator",
  26. "to-wgs84",
  27. "EPSG:4326",
  28. "WGS84",
  29. "mercator",
  30. "web-mercator",
  31. "EPSG:3857",
  32. "EPSG:3785",
  33. "900913",
  34. "EPSG:900913",
  35. "EPSG:102113"
  36. ],
  37. "main": "dist/js/index.js",
  38. "module": "dist/es/index.js",
  39. "exports": {
  40. "./package.json": "./package.json",
  41. ".": {
  42. "import": "./dist/es/index.js",
  43. "require": "./dist/js/index.js"
  44. }
  45. },
  46. "types": "dist/js/index.d.ts",
  47. "sideEffects": false,
  48. "files": [
  49. "dist"
  50. ],
  51. "scripts": {
  52. "bench": "ts-node bench.js",
  53. "build": "npm-run-all build:*",
  54. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  55. "build:js": "tsc",
  56. "docs": "node ../../scripts/generate-readmes",
  57. "test": "npm-run-all test:*",
  58. "test:tape": "ts-node -r esm test.js",
  59. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  60. },
  61. "devDependencies": {
  62. "@turf/truncate": "^6.5.0",
  63. "@types/tape": "*",
  64. "benchmark": "*",
  65. "load-json-file": "*",
  66. "npm-run-all": "*",
  67. "proj4": "*",
  68. "tape": "*",
  69. "ts-node": "*",
  70. "tslint": "*",
  71. "typescript": "*",
  72. "write-json-file": "*"
  73. },
  74. "dependencies": {
  75. "@turf/clone": "^6.5.0",
  76. "@turf/helpers": "^6.5.0",
  77. "@turf/meta": "^6.5.0"
  78. },
  79. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  80. }