package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@turf/boolean-within",
  3. "version": "6.5.0",
  4. "description": "turf boolean-within module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Rowan Winsemius <@rowanwins>"
  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. "boolean",
  26. "de-9im",
  27. "within",
  28. "boolean-within"
  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": "dist/js/index.d.ts",
  40. "sideEffects": false,
  41. "files": [
  42. "dist"
  43. ],
  44. "scripts": {
  45. "bench": "ts-node bench.js",
  46. "build": "npm-run-all build:*",
  47. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  48. "build:js": "tsc",
  49. "docs": "node ../../scripts/generate-readmes",
  50. "test": "npm-run-all test:*",
  51. "test:tape": "ts-node -r esm test.js",
  52. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  53. },
  54. "devDependencies": {
  55. "@types/tape": "*",
  56. "benchmark": "*",
  57. "boolean-jsts": "*",
  58. "boolean-shapely": "*",
  59. "glob": "*",
  60. "load-json-file": "*",
  61. "npm-run-all": "*",
  62. "tape": "*",
  63. "ts-node": "*",
  64. "tslint": "*",
  65. "typescript": "*"
  66. },
  67. "dependencies": {
  68. "@turf/bbox": "^6.5.0",
  69. "@turf/boolean-point-in-polygon": "^6.5.0",
  70. "@turf/boolean-point-on-line": "^6.5.0",
  71. "@turf/helpers": "^6.5.0",
  72. "@turf/invariant": "^6.5.0"
  73. },
  74. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  75. }