Node-Red configuration
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

package.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "d3-delaunay",
  3. "version": "6.0.4",
  4. "description": "Compute the Voronoi diagram of a set of two-dimensional points.",
  5. "homepage": "https://github.com/d3/d3-delaunay",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/d3/d3-delaunay.git"
  9. },
  10. "keywords": [
  11. "voronoi",
  12. "delaunay",
  13. "geometry"
  14. ],
  15. "license": "ISC",
  16. "author": {
  17. "name": "Mike Bostock",
  18. "url": "https://bost.ocks.org/mike"
  19. },
  20. "contributors": [
  21. {
  22. "name": "Vladimir Agafonkin",
  23. "url": "https://agafonkin.com"
  24. },
  25. {
  26. "name": "Philippe Rivière",
  27. "url": "https://visionscarto.net"
  28. }
  29. ],
  30. "type": "module",
  31. "files": [
  32. "dist/**/*.js",
  33. "src/**/*.js"
  34. ],
  35. "module": "src/index.js",
  36. "main": "src/index.js",
  37. "jsdelivr": "dist/d3-delaunay.min.js",
  38. "unpkg": "dist/d3-delaunay.min.js",
  39. "exports": {
  40. "umd": "./dist/d3-delaunay.min.js",
  41. "default": "./src/index.js"
  42. },
  43. "sideEffects": false,
  44. "dependencies": {
  45. "delaunator": "5"
  46. },
  47. "devDependencies": {
  48. "@rollup/plugin-node-resolve": "13",
  49. "eslint": "7",
  50. "mocha": "8",
  51. "rollup": "2",
  52. "rollup-plugin-terser": "7"
  53. },
  54. "scripts": {
  55. "test": "mocha 'test/**/*-test.js' && eslint src test",
  56. "prepublishOnly": "rm -rf dist && yarn test && rollup -c",
  57. "postpublish": "git push && git push --tags"
  58. },
  59. "engines": {
  60. "node": ">=12"
  61. }
  62. }