2019-04-19 07:42:28 +00:00
{
2019-04-19 10:04:06 +00:00
"name" : "bigint-crypto-utils" ,
2020-04-06 11:17:22 +00:00
"version" : "2.5.0" ,
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" ,
2020-04-06 11:17:22 +00:00
"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" ,
2020-04-06 11:17:22 +00:00
"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" ,
2020-04-06 11:17:22 +00:00
"lib" : "./lib" ,
2019-04-19 07:42:28 +00:00
"src" : "./src" ,
2020-03-03 08:36:04 +00:00
"test" : "./test" ,
2020-03-24 23:34:22 +00:00
"types" : "./types"
2019-04-19 07:42:28 +00:00
} ,
"scripts" : {
2020-04-06 11:17:22 +00:00
"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" ,
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
} ,
2020-04-06 11:17:22 +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" : {
2020-03-15 16:06:00 +00:00
"@rollup/plugin-commonjs" : "^11.0.2" ,
"@rollup/plugin-multi-entry" : "^3.0.0" ,
"@rollup/plugin-node-resolve" : "^7.1.1" ,
2020-02-27 20:51:48 +00:00
"@rollup/plugin-replace" : "^2.3.1" ,
2020-04-06 11:17:22 +00:00
"chai" : "^4.2.0" ,
2019-12-09 12:14:47 +00:00
"jsdoc-to-markdown" : "^5.0.3" ,
2020-03-24 23:34:22 +00:00
"mocha" : "^7.1.1" ,
2020-03-02 22:16:05 +00:00
"npm-run-all" : "^4.1.5" ,
2020-04-06 11:17:22 +00:00
"rollup" : "^2.3.3" ,
2020-03-15 16:06:00 +00:00
"rollup-plugin-terser" : "^5.3.0" ,
2020-04-06 11:17:22 +00:00
"standard" : "^14.3.3" ,
2020-03-03 08:36:04 +00:00
"typescript" : "^3.8.3"
2019-04-19 07:42:28 +00:00
}
2019-04-20 20:13:13 +00:00
}