package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@turf/helpers",
  3. "version": "6.5.0",
  4. "description": "turf helpers module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tom MacWright <@tmcw>",
  8. "Stefano Borghi <@stebogit>",
  9. "Denis Carriere <@DenisCarriere>",
  10. "William Nordmann <@wnordmann>"
  11. ],
  12. "license": "MIT",
  13. "bugs": {
  14. "url": "https://github.com/Turfjs/turf/issues"
  15. },
  16. "homepage": "https://github.com/Turfjs/turf",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/Turfjs/turf.git"
  20. },
  21. "funding": "https://opencollective.com/turf",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "keywords": [
  26. "geo",
  27. "point",
  28. "turf",
  29. "geojson"
  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. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  54. },
  55. "devDependencies": {
  56. "@types/tape": "*",
  57. "benchmark": "*",
  58. "npm-run-all": "*",
  59. "tape": "*",
  60. "ts-node": "*",
  61. "tslint": "*",
  62. "typescript": "*"
  63. },
  64. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  65. }