2019-04-19 07:42:28 +00:00
{
2019-04-19 10:04:06 +00:00
"name" : "bigint-crypto-utils" ,
2019-05-04 16:41:09 +00:00
"version" : "2.1.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" : {
"chai" : "^4.2.0" ,
"jsdoc-to-markdown" : "^4.0.1" ,
2019-04-20 20:35:05 +00:00
"mocha" : "^6.1.4" ,
"rollup" : "^1.10.1" ,
2019-04-19 07:42:28 +00:00
"rollup-plugin-babel-minify" : "^8.0.0" ,
"rollup-plugin-commonjs" : "^9.3.4" ,
"rollup-plugin-multi-entry" : "^2.1.0" ,
"rollup-plugin-node-resolve" : "^4.2.3" ,
"rollup-plugin-replace" : "^2.2.0"
}
2019-04-20 20:13:13 +00:00
}