package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "@turf/concave",
  3. "version": "6.5.0",
  4. "description": "turf concave module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tom MacWright <@tmcw>",
  8. "Lyzi Diamond <@lyzidiamond>",
  9. "Denis Carriere <@DenisCarriere>",
  10. "Stefano Borghi <@stebogit>",
  11. "Rowan Winsemius <@rowanwins>",
  12. "Daniel Pulido <@dpmcmlxxvi>",
  13. "Stephen Whitmore <@noffle>",
  14. "Gregor MacLennan <@gmaclennan>",
  15. "Mike Bostock <@mbostock>"
  16. ],
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/Turfjs/turf/issues"
  20. },
  21. "homepage": "https://github.com/Turfjs/turf",
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/Turfjs/turf.git"
  25. },
  26. "funding": "https://opencollective.com/turf",
  27. "publishConfig": {
  28. "access": "public"
  29. },
  30. "keywords": [
  31. "turf",
  32. "gis",
  33. "concave",
  34. "geometry"
  35. ],
  36. "main": "dist/js/index.js",
  37. "module": "dist/es/index.js",
  38. "exports": {
  39. "./package.json": "./package.json",
  40. ".": {
  41. "import": "./dist/es/index.js",
  42. "require": "./dist/js/index.js"
  43. }
  44. },
  45. "types": "dist/js/index.d.ts",
  46. "sideEffects": false,
  47. "files": [
  48. "dist"
  49. ],
  50. "scripts": {
  51. "bench": "ts-node bench.js",
  52. "build": "npm-run-all build:*",
  53. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  54. "build:js": "tsc",
  55. "docs": "node ../../scripts/generate-readmes",
  56. "test": "npm-run-all test:*",
  57. "test:tape": "ts-node -r esm test.js"
  58. },
  59. "devDependencies": {
  60. "@types/tape": "*",
  61. "@types/topojson-client": "^3.0.0",
  62. "@types/topojson-server": "^3.0.0",
  63. "benchmark": "*",
  64. "load-json-file": "*",
  65. "npm-run-all": "*",
  66. "tape": "*",
  67. "ts-node": "*",
  68. "tslint": "*",
  69. "typescript": "*",
  70. "write-json-file": "*"
  71. },
  72. "dependencies": {
  73. "@turf/clone": "^6.5.0",
  74. "@turf/distance": "^6.5.0",
  75. "@turf/helpers": "^6.5.0",
  76. "@turf/invariant": "^6.5.0",
  77. "@turf/meta": "^6.5.0",
  78. "@turf/tin": "^6.5.0",
  79. "topojson-client": "3.x",
  80. "topojson-server": "3.x"
  81. },
  82. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  83. }