bigint-crypto-utils/package.json

74 lines
2.0 KiB
JSON
Raw Normal View History

2019-04-19 07:42:28 +00:00
{
2019-04-19 10:04:06 +00:00
"name": "bigint-crypto-utils",
"version": "2.5.0",
"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.",
2019-04-19 07:42:28 +00:00
"keywords": [
"modular arithmetics",
2019-04-19 10:04:06 +00:00
"crypto",
2019-04-19 07:42:28 +00:00
"prime",
2019-04-19 10:04:06 +00:00
"random",
2019-04-19 07:42:28 +00:00
"rng",
"prng",
"primality test",
"BigInt"
],
"license": "MIT",
"author": {
"name": "Juan Hernández Serrano",
"email": "jserrano@entel.upc.edu",
2019-04-19 07:42:28 +00:00
"url": "https://github.com/juanelas"
},
2019-04-19 10:04:06 +00:00
"repository": "github:juanelas/bigint-crypto-utils",
"main": "./lib/index.node.js",
"browser": "./lib/index.browser.mod.js",
"types": "./types/index.d.ts",
2019-04-19 07:42:28 +00:00
"directories": {
"build": "./build",
"lib": "./lib",
2019-04-19 07:42:28 +00:00
"src": "./src",
"test": "./test",
"types": "./types"
2019-04-19 07:42:28 +00:00
},
"scripts": {
"test": "mocha",
"build:js": "rollup -c build/rollup.config.js",
"build:standard": "standard --fix",
"build:browserTests": "rollup -c build/rollup.tests.config.js",
"build:docs": "jsdoc2md --template=./src/doc/readme-template.md --files ./lib/index.browser.mod.js -d 3 > README.md",
"build:dts": "node build/build.dts.js",
"build": "run-s build:**",
"prepublishOnly": "npm run build"
2019-04-19 07:42:28 +00:00
},
"standard": {
"env": [
"mocha"
],
"globals": [
"BigInt",
"Blob",
"postMessage",
"self",
"Worker"
],
"ignore": [
"/test/browser/",
"/lib/index.browser.bundle.js",
"/lib/index.browser.bundle.mod.js"
]
},
2019-04-19 07:42:28 +00:00
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"chai": "^4.2.0",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.3.3",
"rollup-plugin-terser": "^5.3.0",
"standard": "^14.3.3",
"typescript": "^3.8.3"
2019-04-19 07:42:28 +00:00
}
2019-04-20 20:13:13 +00:00
}