bigint-mod-arith/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2019-03-17 08:40:35 +00:00
{
"name": "bigint-mod-arith",
2019-04-08 10:21:33 +00:00
"version": "1.2.4",
2019-03-17 08:40:35 +00:00
"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",
2019-04-06 08:08:31 +00:00
"main": "./dist/bigint-mod-arith-latest.node.js",
"browser": "./dist/bigint-mod-arith-latest.browser.mod.js",
2019-03-17 08:40:35 +00:00
"directories": {
2019-04-06 08:08:31 +00:00
"build": "./build",
"dist": "./dist",
2019-03-17 08:40:35 +00:00
"src": "./src"
},
"scripts": {
2019-04-06 08:08:31 +00:00
"docs:build": "jsdoc2md --template=README.hbs --files ./src/main.js > README.md",
"build": "node build/build.rollup.js",
"prepublishOnly": "npm run build && npm run docs:build"
2019-03-17 08:40:35 +00:00
},
"devDependencies": {
2019-04-06 08:08:31 +00:00
"jsdoc-to-markdown": "^4.0.1",
"rollup": "^1.9.0",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-commonjs": "^9.3.4"
2019-03-17 08:40:35 +00:00
}
}