package.json 535 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "ttest",
  3. "description": "Perform the Student's t hypothesis test",
  4. "version": "4.0.0",
  5. "author": "Andreas Madsen <amwebdk@gmail.com>",
  6. "main": "./hypothesis.js",
  7. "scripts": {
  8. "test": "tap test/simple/*"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/AndreasMadsen/ttest.git"
  13. },
  14. "keywords": [
  15. "hypothesis",
  16. "student t"
  17. ],
  18. "dependencies": {
  19. "summary": "^2.0.0",
  20. "distributions": "^2.1.0"
  21. },
  22. "devDependencies": {
  23. "tap": "^14.0.0"
  24. },
  25. "license": "MIT"
  26. }