X Tutup
{ "name": "entropy-string", "version": "4.3.1", "description": "Efficiently generate cryptographically strong random strings of specified entropy from various character sets.", "main": "entropy-string.js", "directories": { "dist": "dist", "test": "test" }, "browser": { "./csprng-bytes.js": "./csprng-bytes-browser.js" }, "scripts": { "build": "yarn clean && BABEL_ENV=production babel --out-dir=dist *.js", "clean": "rm -f dist/*.js", "examples": "cd examples && BABEL_ENV=development babel --out-dir=dist *.js && cd ..", "lint": "eslint *.js tests/*js examples/*js", "prepare": "yarn build", "test": "yarn lint && yarn jest" }, "repository": { "type": "git", "url": "https://github.com/EntropyString/JavaScript.git" }, "keywords": [ "entropy", "random", "string", "secure", "security" ], "author": "Paul Rogers ", "maintainers": [ { "email": "paul@knoxen.com", "name": "knoxen" }, { "email": "paul@dingosky.com", "name": "dingo sky" } ], "license": "ISC", "bugs": { "url": "https://github.com/EntropyString/JavaScript/issues" }, "homepage": "https://github.com/EntropyString/JavaScript#README", "jest": { "testRegex": "tests/.*\\.(js|jsx)$", "bail": true }, "devDependencies": { "@babel/cli": "^7.11.6", "@babel/core": "^7.11.6", "@babel/plugin-transform-runtime": "^7.11.5", "@babel/preset-env": "^7.11.5", "ava": "^3.12.1", "eslint": "7.9.0", "eslint-config-airbnb": "^18.2.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-jsx-a11y": "^6.3.1", "eslint-plugin-react": "^7.20.6", "jest": "^26.4.2" }, "dependencies": { "@babel/runtime": "^7.11.2" } }
X Tutup