Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
725 B
33 lines
725 B
1 year ago
|
{
|
||
|
"name": "miller-rabin",
|
||
|
"version": "4.0.1",
|
||
|
"description": "Miller Rabin algorithm for primality test",
|
||
|
"main": "lib/mr.js",
|
||
|
"bin": "bin/miller-rabin",
|
||
|
"scripts": {
|
||
|
"test": "mocha --reporter=spec test/**/*-test.js"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git@github.com:indutny/miller-rabin"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"prime",
|
||
|
"miller-rabin",
|
||
|
"bignumber"
|
||
|
],
|
||
|
"author": "Fedor Indutny <fedor@indutny.com>",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/indutny/miller-rabin/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/indutny/miller-rabin",
|
||
|
"devDependencies": {
|
||
|
"mocha": "^2.0.1"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"bn.js": "^4.0.0",
|
||
|
"brorand": "^1.0.1"
|
||
|
}
|
||
|
}
|