package.json 1.6 KB

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