bigint-mod-arith/package.json

74 lines
1.9 KiB
JSON
Raw Normal View History

2019-03-17 08:40:35 +00:00
{
"name": "bigint-mod-arith",
2020-04-18 23:17:56 +00:00
"version": "2.0.6",
2020-04-08 09:53:15 +00:00
"description": "Some common functions for modular arithmetic using native JS implementation of BigInt",
2019-03-17 08:40:35 +00:00
"keywords": [
"modular arithmetics",
"BigInt",
"lcm",
"gcd",
"egcd",
"modinv",
2019-03-17 08:40:35 +00:00
"modular inverse",
"modpow",
2019-03-17 08:40:35 +00:00
"modular exponentiation"
],
"license": "MIT",
"author": {
"name": "Juan Hernández Serrano",
"email": "j.hernandez@upc.edu",
2019-03-17 08:40:35 +00:00
"url": "https://github.com/juanelas"
},
"repository": "github:juanelas/bigint-mod-arith",
2020-04-06 22:49:13 +00:00
"main": "./lib/index.node.js",
"browser": "./lib/index.browser.mod.js",
"types": "./types/index.d.ts",
2019-03-17 08:40:35 +00:00
"directories": {
2019-04-06 08:08:31 +00:00
"build": "./build",
2020-04-06 22:49:13 +00:00
"lib": "./lib",
"src": "./src",
"test": "./test",
"types": "./types"
2019-03-17 08:40:35 +00:00
},
"scripts": {
"test": "nyc --check-coverage mocha",
"coverage": "nyc report --reporter=lcov",
2020-04-06 22:49:13 +00:00
"build:js": "rollup -c build/rollup.config.js",
"build:standard": "standard --fix",
"build:browserTests": "rollup -c build/rollup.tests.config.js",
"build:docs": "node build/build.docs.js",
2020-04-06 22:49:13 +00:00
"build:dts": "node build/build.dts.js",
"build": "run-s build:**",
"preversion": "npm run build && npm run test",
"postversion": "git push"
2020-04-06 22:49:13 +00:00
},
"standard": {
"env": [
"mocha"
],
"globals": [
"BigInt"
],
"ignore": [
"/test/browser/",
2020-04-08 09:53:15 +00:00
"/lib/index.browser.bundle.iife.js",
2020-04-06 22:49:13 +00:00
"/lib/index.browser.bundle.mod.js"
]
2019-03-17 08:40:35 +00:00
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
2020-04-06 22:49:13 +00:00
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^7.1.3",
2020-04-06 22:49:13 +00:00
"@rollup/plugin-replace": "^2.3.1",
"chai": "^4.2.0",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"rollup": "^2.6.1",
2020-04-06 22:49:13 +00:00
"rollup-plugin-terser": "^5.3.0",
"standard": "^14.3.3",
"typescript": "^3.8.3"
2019-03-17 08:40:35 +00:00
}
}