package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@turf/bbox-clip",
  3. "version": "6.5.0",
  4. "description": "turf bbox-clip module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tim Channell <@tcql>",
  8. "Vladimir Agafonkin <@mourner>",
  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. "turf",
  26. "geojson",
  27. "gis",
  28. "bbox",
  29. "clip"
  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": "dist/js/index.d.ts",
  41. "sideEffects": false,
  42. "files": [
  43. "dist"
  44. ],
  45. "scripts": {
  46. "bench": "ts-node bench.js",
  47. "build": "npm-run-all build:*",
  48. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  49. "build:js": "tsc",
  50. "docs": "node ../../scripts/generate-readmes",
  51. "test": "npm-run-all test:*",
  52. "test:tape": "ts-node -r esm test.js"
  53. },
  54. "devDependencies": {
  55. "@turf/bbox": "^6.5.0",
  56. "@types/tape": "*",
  57. "benchmark": "*",
  58. "load-json-file": "*",
  59. "npm-run-all": "*",
  60. "tape": "*",
  61. "ts-node": "*",
  62. "tslint": "*",
  63. "typescript": "*",
  64. "write-json-file": "*"
  65. },
  66. "dependencies": {
  67. "@turf/helpers": "^6.5.0",
  68. "@turf/invariant": "^6.5.0"
  69. },
  70. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  71. }