package.json 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "alpha-complex",
  3. "version": "1.0.0",
  4. "description": "Computes the alpha complex of a point set in any dimension",
  5. "main": "alpha.js",
  6. "directories": {
  7. "example": "example"
  8. },
  9. "dependencies": {
  10. "circumradius": "^1.0.0",
  11. "delaunay-triangulate": "^1.1.6"
  12. },
  13. "devDependencies": {
  14. "canvas-fit": "^1.2.0",
  15. "planar-graph-to-svg": "^1.0.0",
  16. "simplicial-complex": "^1.0.0",
  17. "mouse-change": "^1.1.1"
  18. },
  19. "scripts": {
  20. "test": "tape test/*.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/mikolalysenko/alpha-complex.git"
  25. },
  26. "keywords": [
  27. "alpha",
  28. "shape",
  29. "complex",
  30. "simplicial",
  31. "complex",
  32. "point",
  33. "surface",
  34. "reconstruction"
  35. ],
  36. "author": "Mikola Lysenko",
  37. "license": "MIT",
  38. "bugs": {
  39. "url": "https://github.com/mikolalysenko/alpha-complex/issues"
  40. },
  41. "homepage": "https://github.com/mikolalysenko/alpha-complex"
  42. }