package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@turf/line-to-polygon",
  3. "version": "6.5.0",
  4. "description": "turf line-to-polygon module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Denis Carriere <@DenisCarriere>"
  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. "gis",
  25. "polygon",
  26. "linestring",
  27. "line"
  28. ],
  29. "main": "dist/js/index.js",
  30. "module": "dist/es/index.js",
  31. "exports": {
  32. "./package.json": "./package.json",
  33. ".": {
  34. "import": "./dist/es/index.js",
  35. "require": "./dist/js/index.js"
  36. }
  37. },
  38. "types": "dist/js/index.d.ts",
  39. "sideEffects": false,
  40. "files": [
  41. "dist"
  42. ],
  43. "scripts": {
  44. "bench": "ts-node bench.js",
  45. "build": "npm-run-all build:*",
  46. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  47. "build:js": "tsc",
  48. "docs": "node ../../scripts/generate-readmes",
  49. "test": "npm-run-all test:*",
  50. "test:tape": "ts-node -r esm test.js",
  51. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  52. },
  53. "devDependencies": {
  54. "@types/tape": "*",
  55. "benchmark": "*",
  56. "load-json-file": "*",
  57. "npm-run-all": "*",
  58. "tape": "*",
  59. "ts-node": "*",
  60. "tslint": "*",
  61. "typescript": "*",
  62. "write-json-file": "*"
  63. },
  64. "dependencies": {
  65. "@turf/bbox": "^6.5.0",
  66. "@turf/clone": "^6.5.0",
  67. "@turf/helpers": "^6.5.0",
  68. "@turf/invariant": "^6.5.0"
  69. },
  70. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  71. }