@japan-d2/rho
Version:
JavaScript implementation that compute prime factors using Pollard's rho algorithm
46 lines (45 loc) • 1.17 kB
JSON
{
"name": "@japan-d2/rho",
"version": "0.0.10",
"description": "JavaScript implementation that compute prime factors using Pollard's rho algorithm",
"main": "lib/index.js",
"type": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"files": [
"lib"
],
"keywords": [
"Math",
"prime factors",
"rho"
],
"author": "AOKI Yuto <yuto.aoki@japan-d2.com> (https://japan-d2.com)",
"homepage": "https://github.com/japan-d2/js-rho",
"license": "MIT",
"engines": {
"node": ">=10.4.0"
},
"dependencies": {
"@japan-d2/gcd": "^0.0.8"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}