110 lines
3.2 KiB
JSON
110 lines
3.2 KiB
JSON
{
|
|
"name": "bigint-mod-arith",
|
|
"version": "3.0.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"
|
|
},
|
|
"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"
|
|
},
|
|
"default": "./dist/esm/index.browser.js"
|
|
},
|
|
"./esm-browser-bundle": "./dist/bundles/esm.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 test:browser coverage",
|
|
"build:js": "rollup -c build/rollup.config.js",
|
|
"clean": "rimraf .nyc_output .mocha-ts coverage dist docs",
|
|
"coverage": "nyc --check-coverage --exclude build --exclude '{src/ts/**/*.spec.ts,test/**/*.ts}' --reporter=text --reporter=lcov node ./build/bin/mocha-ts.js --require build/testing/mocha/mocha-init.js '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
|
"docs": "node build/build.docs.js",
|
|
"git:add": "git add -A",
|
|
"lint": "ts-standard --fix",
|
|
"mocha": "node ./build/bin/mocha-ts.js --require build/testing/mocha/mocha-init.js ",
|
|
"version": "run-s build git:add",
|
|
"postversion": "git push --follow-tags",
|
|
"test": "run-s test:browser test:node",
|
|
"test:browser": "node build/testing/browser/index.js",
|
|
"test:node": "npm run mocha -- '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
|
"watch": "npm run mocha -- --watch '{src/ts/**/*.spec.ts,test/**/*.ts}'"
|
|
},
|
|
"ts-standard": {
|
|
"env": [
|
|
"mocha"
|
|
],
|
|
"globals": [
|
|
"IS_BROWSER",
|
|
"browser",
|
|
"page",
|
|
"_pkg",
|
|
"chai"
|
|
],
|
|
"project": "./tsconfig.json",
|
|
"ignore": [
|
|
"dist/**/*"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^20.0.0",
|
|
"@rollup/plugin-multi-entry": "^4.0.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
|
"@rollup/plugin-replace": "^3.0.0",
|
|
"@rollup/plugin-typescript": "^8.2.0",
|
|
"@types/chai": "^4.2.14",
|
|
"@types/mocha": "^9.0.0",
|
|
"chai": "^4.3.3",
|
|
"fs-extra": "^10.0.0",
|
|
"glob": "^7.1.6",
|
|
"json5": "^2.2.0",
|
|
"minimatch": "^3.0.4",
|
|
"mocha": "^9.0.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^15.1.0",
|
|
"pirates": "^4.0.1",
|
|
"puppeteer": "^10.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.40.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"ts-standard": "^10.0.0",
|
|
"tslib": "^2.1.0",
|
|
"typedoc": "^0.21.5",
|
|
"typedoc-plugin-markdown": "^3.6.0",
|
|
"typescript": "^4.2.2"
|
|
}
|
|
}
|