2019-04-19 07:42:28 +00:00
{
2019-04-19 10:04:06 +00:00
"name" : "bigint-crypto-utils" ,
2020-03-03 08:36:16 +00:00
"version" : "2.4.7" ,
2020-02-29 00:07:20 +00:00
"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" ,
"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" ,
2020-03-03 08:36:04 +00:00
"browser" : "./dist/bigint-crypto-utils-latest.browser.mod.min.js" ,
"types" : "./types/bigint-crypto-utils.d.ts" ,
2019-04-19 07:42:28 +00:00
"directories" : {
"build" : "./build" ,
"dist" : "./dist" ,
"src" : "./src" ,
2020-03-03 08:36:04 +00:00
"test" : "./test" ,
"types" : "/types"
2019-04-19 07:42:28 +00:00
} ,
"scripts" : {
2020-03-02 22:16:05 +00:00
"test" : "mocha --timeout 600000" ,
"build:js" : "node build/build.rollup.js" ,
2019-04-19 07:42:28 +00:00
"build:browserTests" : "node build/build.browser.tests.js" ,
2020-03-02 22:16:05 +00:00
"build:docs" : "jsdoc2md --template=./src/readme-template.hbs --files ./src/main.js > README.md" ,
2020-03-03 08:36:04 +00:00
"build:dts" : "node build/build.dts.js" ,
2020-03-02 22:16:05 +00:00
"build" : "run-s build:**" ,
"prepublishOnly" : "npm run build"
2019-04-19 07:42:28 +00:00
} ,
"devDependencies" : {
2020-02-27 20:51:48 +00:00
"@rollup/plugin-replace" : "^2.3.1" ,
2019-07-20 08:45:02 +00:00
"chai" : ">=4.2.0" ,
2020-02-27 20:51:48 +00:00
"eslint" : "^6.8.0" ,
2019-12-09 12:14:47 +00:00
"jsdoc-to-markdown" : "^5.0.3" ,
2020-03-02 22:16:05 +00:00
"mocha" : "^7.1.0" ,
"npm-run-all" : "^4.1.5" ,
"rollup" : "^1.32.0" ,
2019-10-09 08:50:14 +00:00
"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" ,
2020-03-03 08:36:04 +00:00
"rollup-plugin-node-resolve" : ">=5.2.0" ,
"typescript" : "^3.8.3"
2019-04-19 07:42:28 +00:00
}
2019-04-20 20:13:13 +00:00
}