120 lines
3.7 KiB
JSON
120 lines
3.7 KiB
JSON
{
|
|
"name": "bigint-mod-arith",
|
|
"version": "3.1.1",
|
|
"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": "github:juanelas/bigint-mod-arith",
|
|
"engines": {
|
|
"node": ">=10.4.0"
|
|
},
|
|
"type": "module",
|
|
"types": "./types/index.d.ts",
|
|
"main": "./dist/cjs/index.node.cjs",
|
|
"browser": "./dist/esm/index.browser.js",
|
|
"module": "./dist/esm/index.node.js",
|
|
"exports": {
|
|
".": {
|
|
"node": {
|
|
"require": "./dist/cjs/index.node.cjs",
|
|
"import": "./dist/esm/index.node.js",
|
|
"module": "./dist/esm/index.node.js"
|
|
},
|
|
"default": "./dist/esm/index.browser.js"
|
|
},
|
|
"./esm-browser-bundle": "./dist/bundles/esm.min.js",
|
|
"./iife-browser-bundle": "./dist/bundles/iife.js",
|
|
"./umd-browser-bundle": "./dist/bundles/umd.js",
|
|
"./types": "./types/index.d.ts"
|
|
},
|
|
"directories": {
|
|
"build": "./build",
|
|
"dist": "./dist",
|
|
"docs": "./docs",
|
|
"src": "./src",
|
|
"test": "./test"
|
|
},
|
|
"scripts": {
|
|
"build": "run-s lint build:js docs",
|
|
"build:js": "rollup -c build/rollup.config.js",
|
|
"clean": "rimraf .nyc_output .mocha-ts coverage dist types docs",
|
|
"coverage": "nyc --check-coverage --exclude build --exclude '{src/ts/**/*.spec.ts,test/**/*.ts,.mocha-ts/**/*}' --reporter=text --reporter=lcov node ./build/bin/mocha-ts.cjs --require build/testing/mocha/mocha-init.cjs '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
|
"docs": "node build/build.docs.cjs",
|
|
"git:add": "git add -A",
|
|
"lint": "ts-standard --fix",
|
|
"mocha-ts": "node ./build/bin/mocha-ts.cjs --require build/testing/mocha/mocha-init.cjs ",
|
|
"mocha-ts:browser": "node build/testing/browser/index.cjs ",
|
|
"mocha-ts:browser-headless": "node build/testing/browser/index.cjs headless ",
|
|
"preversion": "run-s clean lint build:js coverage test:browser-headless",
|
|
"version": "run-s docs git:add",
|
|
"postversion": "git push --follow-tags",
|
|
"test": "run-s test:browser-headless test:node",
|
|
"test:browser": "npm run mocha-ts:browser ",
|
|
"test:browser-headless": "npm run mocha-ts:browser-headless ",
|
|
"test:node": "npm run mocha-ts -- '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
|
"watch": "npm run mocha-ts:node -- --watch '{src/ts/**/*.spec.ts,test/**/*.ts}'"
|
|
},
|
|
"ts-standard": {
|
|
"env": [
|
|
"mocha"
|
|
],
|
|
"globals": [
|
|
"IS_BROWSER",
|
|
"browser",
|
|
"page",
|
|
"_pkg",
|
|
"chai"
|
|
],
|
|
"project": "./tsconfig.json",
|
|
"ignore": [
|
|
"dist/**/*",
|
|
"types/**/*",
|
|
"build/testing/types/**/*"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-multi-entry": "^4.0.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.5",
|
|
"@rollup/plugin-replace": "^4.0.0",
|
|
"@rollup/plugin-typescript": "^8.2.0",
|
|
"@types/chai": "^4.2.22",
|
|
"@types/mocha": "^9.0.0",
|
|
"chai": "^4.3.3",
|
|
"dotenv": "^16.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"glob": "^8.0.1",
|
|
"json5": "^2.2.0",
|
|
"minimatch": "^5.0.1",
|
|
"mocha": "^10.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^15.1.0",
|
|
"pirates": "^4.0.1",
|
|
"puppeteer": "^15.5.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.57.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"ts-standard": "^11.0.0",
|
|
"tslib": "^2.3.1",
|
|
"typedoc": "^0.23.0",
|
|
"typedoc-plugin-markdown": "^3.11.0",
|
|
"typescript": "^4.4.3"
|
|
}
|
|
}
|