package.json 564 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "summary",
  3. "description": "Takes an array of numbers and calculates some descriptive statistics",
  4. "version": "2.1.0",
  5. "author": "Andreas Madsen <amwebdk@gmail.com>",
  6. "main": "./summary.js",
  7. "scripts": {
  8. "test": "tap test.js"
  9. },
  10. "repository" : {
  11. "type": "git",
  12. "url": "git://github.com/AndreasMadsen/summary.git"
  13. },
  14. "keywords": [
  15. "summary",
  16. "sort",
  17. "size",
  18. "mode",
  19. "mean",
  20. "quartile",
  21. "median",
  22. "variance",
  23. "sd"
  24. ],
  25. "devDependencies": {
  26. "tap": "~14.0.0"
  27. },
  28. "license": "MIT"
  29. }