32 lines
778 B
JSON
32 lines
778 B
JSON
{
|
|
"name": "bigint-mod-arith",
|
|
"version": "1.1.0",
|
|
"description": "Some additional common functions for modular arithmetics using native JS (stage 3) implementation of BigInt",
|
|
"keywords": [
|
|
"modular arithmetics",
|
|
"BigInt",
|
|
"lcm",
|
|
"gcd",
|
|
"egcd",
|
|
"modular inverse",
|
|
"modular exponentiation"
|
|
],
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Juan Hernández Serrano",
|
|
"email": "jserrano@entel.upc.edu",
|
|
"url": "https://github.com/juanelas"
|
|
},
|
|
"repository": "github:juanelas/bigint-mod-arith",
|
|
"main": "./src/main.js",
|
|
"directories": {
|
|
"src": "./src"
|
|
},
|
|
"scripts": {
|
|
"docs:build": "jsdoc2md --template=README.hbs --files ./src/main.js > README.md"
|
|
},
|
|
"devDependencies": {
|
|
"jsdoc-to-markdown": "^4.0.1"
|
|
}
|
|
}
|