package.json 762 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "math-random",
  3. "version": "1.0.1",
  4. "description": "a drop-in replacement for Math.random that uses cryptographically secure random number generation, where available",
  5. "main": "node.js",
  6. "browser": "browser.js",
  7. "scripts": {
  8. "test": "tape test.js"
  9. },
  10. "devDependencies": {
  11. "array-unique": "~0.2.1",
  12. "tape": "~4.2.2"
  13. },
  14. "testling": {
  15. "files": "test.js"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git@github.com:michaelrhodes/math-random"
  20. },
  21. "keywords": [
  22. "Math.random",
  23. "crypto.getRandomValues"
  24. ],
  25. "author": "Michael Rhodes",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/michaelrhodes/math-random/issues"
  29. },
  30. "homepage": "https://github.com/michaelrhodes/math-random"
  31. }