UNPKG

random-browser

Version:

The random module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets.

47 lines (46 loc) 1.26 kB
{ "name": "random-browser", "version": "1.2.0", "description": "The random module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets.", "browser": "random.js", "type": "module", "scripts": { "prepare": "npm run minify", "lint": "standard", "minify": "terser random.js --compress passes=2,unsafe_comps=true --ecma 2015 --mangle --module --source-map --output random.min.js", "test": "NODE_OPTIONS=--experimental-vm-modules jest" }, "author": "oittaa", "license": "MIT", "devDependencies": { "jest": "^29.0.0", "jest-environment-jsdom": "^29.0.1", "standard": "^17.0.0", "terser": "^5.12.0" }, "jest": { "collectCoverage": true, "testEnvironment": "jsdom", "transform": {} }, "standard": { "env": [ "jest" ] }, "homepage": "https://github.com/oittaa/random-browser-js", "repository": { "type": "git", "url": "https://github.com/oittaa/random-browser-js" }, "bugs": { "url": "https://github.com/oittaa/random-browser-js/issues" }, "keywords": [ "random", "randomInt", "randomBytes", "randomBits", "crypto" ] }