package.json 725 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "miller-rabin",
  3. "version": "4.0.1",
  4. "description": "Miller Rabin algorithm for primality test",
  5. "main": "lib/mr.js",
  6. "bin": "bin/miller-rabin",
  7. "scripts": {
  8. "test": "mocha --reporter=spec test/**/*-test.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git@github.com:indutny/miller-rabin"
  13. },
  14. "keywords": [
  15. "prime",
  16. "miller-rabin",
  17. "bignumber"
  18. ],
  19. "author": "Fedor Indutny <fedor@indutny.com>",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/indutny/miller-rabin/issues"
  23. },
  24. "homepage": "https://github.com/indutny/miller-rabin",
  25. "devDependencies": {
  26. "mocha": "^2.0.1"
  27. },
  28. "dependencies": {
  29. "bn.js": "^4.0.0",
  30. "brorand": "^1.0.1"
  31. }
  32. }