bigint-crypto-utils/package.json

51 lines
1.7 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",
2019-12-20 16:07:39 +00:00
"version": "2.4.2",
2019-04-20 20:13:13 +00:00
"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.",
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",
"url": "https://github.com/juanelas"
},
2019-04-19 10:04:06 +00:00
"repository": "github:juanelas/bigint-crypto-utils",
"main": "./dist/bigint-crypto-utils-latest.node.js",
"browser": "./dist/bigint-crypto-utils-latest.browser.mod.js",
2019-04-19 07:42:28 +00:00
"directories": {
"build": "./build",
"dist": "./dist",
"src": "./src",
"test": "./test"
},
"scripts": {
2019-04-20 20:11:44 +00:00
"test": "node --experimental-worker node_modules/mocha/bin/_mocha --timeout 600000",
2019-04-19 07:42:28 +00:00
"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",
2019-04-19 10:04:06 +00:00
"build:all": "npm run build && npm run build:browserTests && npm run build:docs",
2019-04-19 07:42:28 +00:00
"prepublishOnly": "npm run build && npm run build:docs"
},
"devDependencies": {
2019-12-20 16:07:32 +00:00
"@rollup/plugin-replace": "^2.2.1",
2019-07-20 08:45:02 +00:00
"chai": ">=4.2.0",
"eslint": "^6.5.1",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^6.2.1",
2019-12-20 16:07:32 +00:00
"rollup": "^1.27.13",
"rollup-plugin-babel-minify": "^9.1.0",
"rollup-plugin-commonjs": "^10.1.0",
2019-07-20 08:45:02 +00:00
"rollup-plugin-multi-entry": ">=2.1.0",
2019-12-20 16:07:32 +00:00
"rollup-plugin-node-resolve": ">=5.2.0"
2019-04-19 07:42:28 +00:00
}
2019-04-20 20:13:13 +00:00
}