package.json 564 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "distributions",
  3. "description": "A collection of probability distribution functions",
  4. "version": "2.1.0",
  5. "author": "Andreas Madsen <amwebdk@gmail.com>",
  6. "main": "./distributions.js",
  7. "scripts": {
  8. "test": "tap test/simple/*"
  9. },
  10. "repository" : {
  11. "type": "git",
  12. "url": "git://github.com/AndreasMadsen/distributions.git"
  13. },
  14. "keywords": [
  15. "distribution",
  16. "normal",
  17. "studentt",
  18. "uniform"
  19. ],
  20. "dependencies": {
  21. "cephes": "^1.1.2"
  22. },
  23. "devDependencies": {
  24. "tap": "^12.1.0"
  25. },
  26. "license": "MIT"
  27. }