package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@turf/line-offset",
  3. "version": "6.5.0",
  4. "description": "turf line-offset module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "David Wee <@rook2pawn>",
  8. "Rowan Winsemius <@rowanwins>",
  9. "Denis Carriere <@DenisCarriere>"
  10. ],
  11. "license": "MIT",
  12. "bugs": {
  13. "url": "https://github.com/Turfjs/turf/issues"
  14. },
  15. "homepage": "https://github.com/Turfjs/turf",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/Turfjs/turf.git"
  19. },
  20. "funding": "https://opencollective.com/turf",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "keywords": [
  25. "line",
  26. "linestring",
  27. "turf",
  28. "offset"
  29. ],
  30. "main": "dist/js/index.js",
  31. "module": "dist/es/index.js",
  32. "exports": {
  33. "./package.json": "./package.json",
  34. ".": {
  35. "import": "./dist/es/index.js",
  36. "require": "./dist/js/index.js"
  37. }
  38. },
  39. "types": "index.d.ts",
  40. "sideEffects": false,
  41. "files": [
  42. "dist",
  43. "index.d.ts"
  44. ],
  45. "scripts": {
  46. "bench": "node -r esm bench.js",
  47. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  48. "docs": "node ../../scripts/generate-readmes",
  49. "test": "npm-run-all test:*",
  50. "test:tape": "node -r esm test.js",
  51. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  52. },
  53. "devDependencies": {
  54. "@turf/truncate": "^6.5.0",
  55. "benchmark": "*",
  56. "load-json-file": "*",
  57. "npm-run-all": "*",
  58. "rollup": "*",
  59. "tape": "*",
  60. "write-json-file": "*"
  61. },
  62. "dependencies": {
  63. "@turf/helpers": "^6.5.0",
  64. "@turf/invariant": "^6.5.0",
  65. "@turf/meta": "^6.5.0"
  66. },
  67. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  68. }