package.json 1.1 KB

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "base64id",
  3. "version": "0.1.0",
  4. "description": "Generates a base64 id",
  5. "author": {
  6. "name": "Kristian Faeldt",
  7. "email": "[email protected]"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/faeldt/base64id.git"
  12. },
  13. "main": "./lib/base64id.js",
  14. "engines": {
  15. "node": ">= 0.4.0"
  16. },
  17. "readme": "base64id\n========\n\nNode.js module that generates a base64 id.\n\nUses crypto.randomBytes when available, falls back to unsafe methods for node.js <= 0.4.\n\nTo increase performance, random bytes are buffered to minimize the number of synchronous calls to crypto.randomBytes.\n\n## Installation\n\n $ npm install mongoose\n\n## Usage\n\n var base64id = require('base64id');\n\n var id = base64id.generateId();\n",
  18. "readmeFilename": "README.md",
  19. "bugs": {
  20. "url": "https://github.com/faeldt/base64id/issues"
  21. },
  22. "_id": "[email protected]",
  23. "dist": {
  24. "shasum": "a3ad91c8f7b3cc47297d360102042a2f25dfa5fa"
  25. },
  26. "_from": "[email protected]",
  27. "_resolved": "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz"
  28. }