package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "@turf/boolean-contains",
  3. "version": "6.5.0",
  4. "description": "turf boolean-contains module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Rowan Winsemius <@rowanwins>",
  8. "Denis Carriere <@DenisCarriere>"
  9. ],
  10. "license": "MIT",
  11. "bugs": {
  12. "url": "https://github.com/Turfjs/turf/issues"
  13. },
  14. "homepage": "https://github.com/Turfjs/turf",
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/Turfjs/turf.git"
  18. },
  19. "funding": "https://opencollective.com/turf",
  20. "publishConfig": {
  21. "access": "public"
  22. },
  23. "keywords": [
  24. "turf",
  25. "contains",
  26. "boolean",
  27. "de-9im"
  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. },
  52. "devDependencies": {
  53. "@types/tape": "*",
  54. "benchmark": "*",
  55. "boolean-jsts": "*",
  56. "boolean-shapely": "*",
  57. "glob": "*",
  58. "load-json-file": "*",
  59. "npm-run-all": "*",
  60. "tape": "*",
  61. "ts-node": "*",
  62. "tslint": "*",
  63. "typescript": "*"
  64. },
  65. "dependencies": {
  66. "@turf/bbox": "^6.5.0",
  67. "@turf/boolean-point-in-polygon": "^6.5.0",
  68. "@turf/boolean-point-on-line": "^6.5.0",
  69. "@turf/helpers": "^6.5.0",
  70. "@turf/invariant": "^6.5.0"
  71. },
  72. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  73. }