GT2/GT2-iOS/node_modules/rndm/package.json

109 lines
3.0 KiB
JSON

{
"_args": [
[
{
"raw": "rndm@1.2.0",
"scope": null,
"escapedName": "rndm",
"name": "rndm",
"rawSpec": "1.2.0",
"spec": "1.2.0",
"type": "version"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/csrf"
]
],
"_from": "rndm@1.2.0",
"_id": "rndm@1.2.0",
"_inCache": true,
"_location": "/rndm",
"_nodeVersion": "4.1.1",
"_npmUser": {
"name": "coderhaoxin",
"email": "coderhaoxin@outlook.com"
},
"_npmVersion": "2.14.4",
"_phantomChildren": {},
"_requested": {
"raw": "rndm@1.2.0",
"scope": null,
"escapedName": "rndm",
"name": "rndm",
"rawSpec": "1.2.0",
"spec": "1.2.0",
"type": "version"
},
"_requiredBy": [
"/csrf"
],
"_resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz",
"_shasum": "f33fe9cfb52bbfd520aa18323bc65db110a1b76c",
"_shrinkwrap": null,
"_spec": "rndm@1.2.0",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/csrf",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com"
},
"bugs": {
"url": "https://github.com/crypto-utils/rndm/issues"
},
"dependencies": {},
"description": "random string generator",
"devDependencies": {
"istanbul": "0",
"mocha": "2"
},
"directories": {},
"dist": {
"shasum": "f33fe9cfb52bbfd520aa18323bc65db110a1b76c",
"tarball": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz"
},
"files": [
"index.js"
],
"gitHead": "9d566c844a4c83487f3b2621be5b6588d5a2b617",
"homepage": "https://github.com/crypto-utils/rndm#readme",
"keywords": [
"random",
"number",
"generator",
"uid",
"id"
],
"license": "MIT",
"maintainers": [
{
"name": "coderhaoxin",
"email": "coderhaoxin@outlook.com"
},
{
"name": "dougwilson",
"email": "doug@somethingdoug.com"
},
{
"name": "fishrock123",
"email": "fishrock123@rocketmail.com"
},
{
"name": "jongleberry",
"email": "jonathanrichardong@gmail.com"
}
],
"name": "rndm",
"optionalDependencies": {},
"readme": "\n# RNDM\n\nRandom string generator.\nBasically `Math.random().toString(36).slice(2)`,\nbut with both upper and lower case letters and arbitrary lengths.\nUseful for creating fast, not cryptographically secure salts.\n\n## API\n\n```js\n// base62 by default\nvar rndm = require('rndm')\nvar salt = rndm(16)\n```\n\n### var salt = rndm(length)\n\n### var salt = rndm.base62(length)\n\n### var salt = rndm.base36(length)\n\n### var salt = rndm.base10(length)\n\n### var random = rndm.create(characters)\n\nCreate a new random generator with custom characters.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/crypto-utils/rndm.git"
},
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"version": "1.2.0"
}