52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "@lumeweb/bigint-mod-arith",
|
|
"version": "1.0.0",
|
|
"description": "Some common functions for modular arithmetic using native JS implementation of BigInt",
|
|
"keywords": [
|
|
"modular arithmetics",
|
|
"BigInt",
|
|
"lcm",
|
|
"gcd",
|
|
"egcd",
|
|
"modinv",
|
|
"modular inverse",
|
|
"modpow",
|
|
"modular exponentiation"
|
|
],
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Juan Hernández Serrano",
|
|
"email": "j.hernandez@upc.edu",
|
|
"url": "https://github.com/juanelas"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "gitea@git.lumeweb.com:LumeWeb/bigint-mod-arith.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.4.0"
|
|
},
|
|
"type": "module",
|
|
"main": "lib/index.js",
|
|
"devDependencies": {
|
|
"@lumeweb/node-library-preset": "^0.2.7",
|
|
"presetter": "*"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/juanelas/bigint-mod-arith/issues"
|
|
},
|
|
"readme": "ERROR: No README data found!",
|
|
"homepage": "https://github.com/juanelas/bigint-mod-arith#readme",
|
|
"scripts": {
|
|
"prepare": "presetter bootstrap",
|
|
"build": "run build",
|
|
"semantic-release": "semantic-release"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|