56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"name": "bigint-crypto-utils",
|
|
"version": "2.4.6",
|
|
"description": "Utils for working with cryptography using native JS implementation of BigInt. It includes arbitrary precision modular arithmetics, cryptographically secure random numbers and strong probable prime generation/testing.",
|
|
"keywords": [
|
|
"modular arithmetics",
|
|
"crypto",
|
|
"prime",
|
|
"random",
|
|
"rng",
|
|
"prng",
|
|
"primality test",
|
|
"BigInt"
|
|
],
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Juan Hernández Serrano",
|
|
"email": "jserrano@entel.upc.edu",
|
|
"url": "https://github.com/juanelas"
|
|
},
|
|
"repository": "github:juanelas/bigint-crypto-utils",
|
|
"main": "./dist/bigint-crypto-utils-latest.node.js",
|
|
"browser": "./dist/bigint-crypto-utils-latest.browser.mod.min.js",
|
|
"types": "./types/bigint-crypto-utils.d.ts",
|
|
"directories": {
|
|
"build": "./build",
|
|
"dist": "./dist",
|
|
"src": "./src",
|
|
"test": "./test",
|
|
"types": "/types"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha --timeout 600000",
|
|
"build:js": "node build/build.rollup.js",
|
|
"build:browserTests": "node build/build.browser.tests.js",
|
|
"build:docs": "jsdoc2md --template=./src/readme-template.hbs --files ./src/main.js > README.md",
|
|
"build:dts": "node build/build.dts.js",
|
|
"build": "run-s build:**",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-replace": "^2.3.1",
|
|
"chai": ">=4.2.0",
|
|
"eslint": "^6.8.0",
|
|
"jsdoc-to-markdown": "^5.0.3",
|
|
"mocha": "^7.1.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"rollup": "^1.32.0",
|
|
"rollup-plugin-babel-minify": "^9.1.0",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-multi-entry": ">=2.1.0",
|
|
"rollup-plugin-node-resolve": ">=5.2.0",
|
|
"typescript": "^3.8.3"
|
|
}
|
|
}
|