51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"name": "bigint-crypto-utils",
|
|
"version": "2.3.3",
|
|
"description": "Utils for working with cryptography using native JS (stage 3) 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.js",
|
|
"directories": {
|
|
"build": "./build",
|
|
"dist": "./dist",
|
|
"src": "./src",
|
|
"test": "./test"
|
|
},
|
|
"scripts": {
|
|
"test": "node --experimental-worker node_modules/mocha/bin/_mocha --timeout 600000",
|
|
"build": "node build/build.rollup.js",
|
|
"build:browserTests": "node build/build.browser.tests.js",
|
|
"build:docs": "jsdoc2md --template=README.hbs --files ./src/main.js > README.md",
|
|
"build:all": "npm run build && npm run build:browserTests && npm run build:docs",
|
|
"prepublishOnly": "npm run build && npm run build:docs"
|
|
},
|
|
"devDependencies": {
|
|
"chai": ">=4.2.0",
|
|
"eslint": "^6.5.1",
|
|
"jsdoc-to-markdown": "^5.0.3",
|
|
"mocha": "^6.2.1",
|
|
"rollup": "^1.23.1",
|
|
"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",
|
|
"@rollup/plugin-replace": "^2.2.1"
|
|
}
|
|
}
|