package.json 899 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "skmeans",
  3. "version": "0.9.7",
  4. "description": "Super fast simple k-means and k-means++ clustering for unidimiensional and multidimensional data. Works in node and browser",
  5. "author": "David Gómez Matarrodona <solzimer@gmail.com>",
  6. "url": "https://github.com/owner/project/issues",
  7. "email": "solzimer@gmail.com",
  8. "main": "dist/node/main.js",
  9. "license": "MIT",
  10. "repository": "solzimer/skmeans",
  11. "keywords": [
  12. "k-means",
  13. "k-means++",
  14. "kmeans++",
  15. "kmeans",
  16. "simple",
  17. "cluster",
  18. "fast",
  19. "unidimiensional",
  20. "multidimensional"
  21. ],
  22. "dependencies": {},
  23. "devDependencies": {
  24. "babel-preset-es2015": "^6.24.1",
  25. "grunt": "^1.0.1",
  26. "grunt-babel": "^6.0.0",
  27. "grunt-browserify": "^5.0.0",
  28. "grunt-contrib-clean": "^1.1.0",
  29. "grunt-contrib-uglify": "^3.0.1",
  30. "load-grunt-tasks": "^3.5.2",
  31. "uglify": "^0.1.5"
  32. }
  33. }